Webex · Schema

PostDomainVerification

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
domain string The domain name to be verified.
claimDomain boolean A boolean to specify whether the domain needs to be claimed. The default value is false. If false, the domain will be verified but not claimed.
reserveDomain boolean For FedRAMP only: If true, add the domain to the FedRAMP reserved domain list. The default value is false.
View JSON Schema on GitHub

JSON Schema

webex-postdomainverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostDomainVerification",
  "title": "PostDomainVerification",
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "example": "cisco.com",
      "description": "The domain name to be verified."
    },
    "claimDomain": {
      "type": "boolean",
      "description": "A boolean to specify whether the domain needs to be claimed. The default value is false. If false, the domain will be verified but not claimed."
    },
    "reserveDomain": {
      "type": "boolean",
      "description": "For FedRAMP only: If true, add the domain to the FedRAMP reserved domain list. The default value is false."
    }
  }
}