Auth0 · Schema

CreateDirectorySynchronizationResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string The connection's identifier
synchronization_id string The synchronization's identifier
status string The synchronization status
View JSON Schema on GitHub

JSON Schema

auth0-createdirectorysynchronizationresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDirectorySynchronizationResponseContent",
  "title": "CreateDirectorySynchronizationResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "synchronization_id",
    "status"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "description": "The connection's identifier"
    },
    "synchronization_id": {
      "type": "string",
      "description": "The synchronization's identifier"
    },
    "status": {
      "type": "string",
      "description": "The synchronization status"
    }
  }
}