Auth0 · Schema

CreateOrganizationDiscoveryDomainRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
domain string The domain name to associate with the organization e.g. acme.com.
status object
use_for_organization_discovery boolean Indicates whether this domain should be used for organization discovery.
View JSON Schema on GitHub

JSON Schema

auth0-createorganizationdiscoverydomainrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateOrganizationDiscoveryDomainRequestContent",
  "title": "CreateOrganizationDiscoveryDomainRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "The domain name to associate with the organization e.g. acme.com.",
      "minLength": 3,
      "maxLength": 255
    },
    "status": {
      "$ref": "#/components/schemas/OrganizationDiscoveryDomainStatus"
    },
    "use_for_organization_discovery": {
      "type": "boolean",
      "description": "Indicates whether this domain should be used for organization discovery."
    }
  }
}