Webex · Schema

CreateBuildingRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
alertingEmail string Email that is used to create alerts in RedSky. At least one email is mandatory.
address object Contains address information for the building.
View JSON Schema on GitHub

JSON Schema

webex-createbuildingrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBuildingRequest",
  "title": "CreateBuildingRequest",
  "type": "object",
  "required": [
    "alertingEmail"
  ],
  "properties": {
    "alertingEmail": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email that is used to create alerts in RedSky. At least one email is mandatory."
    },
    "address": {
      "$ref": "#/components/schemas/AddressObject",
      "description": "Contains address information for the building."
    }
  }
}