Amazon Cognito · Schema

AttributeListType

AttributeListType schema from Amazon Cognito

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC
View JSON Schema on GitHub

JSON Schema

cognito-idp-attribute-list-type-schema.json Raw ↑
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "Name": {
        "allOf": [
          {
            "$ref": "#/components/schemas/AttributeNameType"
          },
          {
            "description": "The name of the attribute."
          }
        ]
      },
      "Value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/AttributeValueType"
          },
          {
            "description": "The value of the attribute."
          }
        ]
      }
    },
    "required": [
      "Name"
    ],
    "description": "Specifies whether the attribute is standard or custom."
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-attribute-list-type-schema.json",
  "title": "AttributeListType",
  "description": "AttributeListType schema from Amazon Cognito"
}