Show image members schema#

イメージメンバーの一覧表示を定義するスキーマを表示します。

APIエンドポイント#

リージョン APIエンドポイント
西日本リージョン3の場合 https://image.jp-west-3.cloud.global.fujitsu.com
東日本リージョン3の場合 https://image.jp-east-3.cloud.global.fujitsu.com

HTTPメソッドとURI#

GET

/v2/schemas/members

HTTPステータスコード#

正常時:200

エラー時:400, 401

レスポンスボディ(正常系)の説明#

(レスポンス例を参照してください。)

レスポンス例#

{
    "links": [
        {
            "href": "{schema}",
            "rel": "describedby"
        }
    ],
    "name": "members",
    "properties": {
        "members": {
            "items": {
                "name": "member",
                "properties": {
                    "created_at": {
                        "description": "Date and time of image member creation",
                        "type": "string"
                    },
                    "image_id": {
                        "description": "An identifier for the image",
                        "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$",
                        "type": "string"
                    },
                    "member_id": {
                        "description": "An identifier for the image member (tenantId)",
                        "type": "string"
                    },
                    "schema": {
                        "readOnly": true,
                        "type": "string"
                    },
                    "status": {
                        "description": "The status of this image member",
                        "enum": [
                            "pending",
                            "accepted",
                            "rejected"
                        ],
                        "type": "string"
                    },
                    "updated_at": {
                        "description": "Date and time of last modification of image member",
                        "type": "string"
                    }
                }
            },
            "type": "array"
        },
        "schema": {
            "type": "string"
        }
    }
}