Auth0 · Schema
GetDirectoryProvisioningResponseContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| connection_id | string | The connection's identifier |
| connection_name | string | The connection's name |
| strategy | string | The connection's strategy |
| mapping | array | The mapping between Auth0 and IDP user attributes |
| synchronize_automatically | boolean | Whether periodic automatic synchronization is enabled |
| synchronize_groups | object | |
| created_at | string | The timestamp at which the directory provisioning configuration was created |
| updated_at | string | The timestamp at which the directory provisioning configuration was last updated |
| last_synchronization_at | string | The timestamp at which the connection was last synchronized |
| last_synchronization_status | string | The status of the last synchronization |
| last_synchronization_error | string | The error message of the last synchronization, if any |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetDirectoryProvisioningResponseContent",
"title": "GetDirectoryProvisioningResponseContent",
"type": "object",
"additionalProperties": false,
"required": [
"connection_id",
"connection_name",
"strategy",
"mapping",
"synchronize_automatically",
"created_at",
"updated_at"
],
"properties": {
"connection_id": {
"type": "string",
"description": "The connection's identifier"
},
"connection_name": {
"type": "string",
"description": "The connection's name"
},
"strategy": {
"type": "string",
"description": "The connection's strategy"
},
"mapping": {
"type": "array",
"description": "The mapping between Auth0 and IDP user attributes",
"minItems": 1,
"items": {
"$ref": "#/components/schemas/DirectoryProvisioningMappingItem"
}
},
"synchronize_automatically": {
"type": "boolean",
"description": "Whether periodic automatic synchronization is enabled"
},
"synchronize_groups": {
"$ref": "#/components/schemas/SynchronizeGroupsEnum",
"x-release-lifecycle": "EA"
},
"created_at": {
"type": "string",
"description": "The timestamp at which the directory provisioning configuration was created",
"format": "date-time"
},
"updated_at": {
"type": "string",
"description": "The timestamp at which the directory provisioning configuration was last updated",
"format": "date-time"
},
"last_synchronization_at": {
"type": "string",
"description": "The timestamp at which the connection was last synchronized",
"format": "date-time"
},
"last_synchronization_status": {
"type": "string",
"description": "The status of the last synchronization"
},
"last_synchronization_error": {
"type": "string",
"description": "The error message of the last synchronization, if any"
}
}
}