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