{ "$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" } } }