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