Webex · Schema

ClaimDomain

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
domain string A list of verified domains for a given organizations.
url string Use this location URL for the domain resource. The resource component of the URL will be the base64 encoded domain name.
View JSON Schema on GitHub

JSON Schema

webex-claimdomain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClaimDomain",
  "title": "ClaimDomain",
  "type": "object",
  "required": [
    "domain",
    "url"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "example": "cisco.com",
      "description": "A list of verified domains for a given organizations."
    },
    "url": {
      "type": "string",
      "example": "https://identity.webex.com/organizations/bf732c85-68ca-4867-94e4-937286ad2fd4/v1/domains/ZXhhbXBsZTMuY29t",
      "description": "Use this location URL for the domain resource. The resource component of the URL will be the base64 encoded domain name."
    }
  }
}