Amazon Cognito · Schema
IdentityDescription
A description of the identity.
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC
Properties
| Name | Type | Description |
|---|---|---|
| IdentityId | object | |
| Logins | object | |
| CreationDate | object | |
| LastModifiedDate | object |
JSON Schema
{
"type": "object",
"properties": {
"IdentityId": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityId"
},
{
"description": "A unique identifier in the format REGION:GUID."
}
]
},
"Logins": {
"allOf": [
{
"$ref": "#/components/schemas/LoginsList"
},
{
"description": "The provider names."
}
]
},
"CreationDate": {
"allOf": [
{
"$ref": "#/components/schemas/DateType"
},
{
"description": "Date on which the identity was created."
}
]
},
"LastModifiedDate": {
"allOf": [
{
"$ref": "#/components/schemas/DateType"
},
{
"description": "Date on which the identity was last modified."
}
]
}
},
"description": "A description of the identity.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-identity-identity-description-schema.json",
"title": "IdentityDescription"
}