Amazon Cognito · Schema

AttributeType

Specifies whether the attribute is standard or custom.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
Name object
Value object
View JSON Schema on GitHub

JSON Schema

cognito-idp-attribute-type-schema.json Raw ↑
{
  "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-type-schema.json",
  "title": "AttributeType"
}