{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-provider-description-schema.json", "title": "ProviderDescription", "description": "A container for IdP details.", "type": "object", "properties": { "ProviderName": { "allOf": [ { "$ref": "#/components/schemas/ProviderNameType" }, { "description": "The IdP name." } ] }, "ProviderType": { "allOf": [ { "$ref": "#/components/schemas/IdentityProviderTypeType" }, { "description": "The IdP type." } ] }, "LastModifiedDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date the provider was last modified." } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date and time, in ISO 8601 format, when the item was created." } ] } } }