Amazon IAM Identity Center · JSON Structure

Identitystore External Ids Structure

ExternalIds schema from AWS IAM Identity Center

Type: array Properties: 0
Access ControlAuthenticationIdentity ManagementSingle Sign-On

ExternalIds is a JSON Structure definition published by Amazon IAM Identity Center. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-structure/identitystore-external-ids-structure.json",
  "name": "ExternalIds",
  "description": "ExternalIds schema from AWS IAM Identity Center",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "Issuer",
      "Id"
    ],
    "properties": {
      "Issuer": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ExternalIdIssuer"
          },
          {
            "description": "The issuer for an external identifier."
          }
        ]
      },
      "Id": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ExternalIdIdentifier"
          },
          {
            "description": "The identifier issued to this resource by an external identity provider."
          }
        ]
      }
    },
    "description": "The identifier issued to this resource by an external identity provider."
  }
}