Webex · Schema

LocationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the location.
name string Name of the location.
View JSON Schema on GitHub

JSON Schema

webex-locationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationObject",
  "title": "LocationObject",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzkzZmQ1ZDMyLTRmYmItNGNjMS04ZTYxLTE0YTA1ZDhhMTIzMw",
      "description": "Unique identifier of the location."
    },
    "name": {
      "type": "string",
      "example": "RCDN",
      "description": "Name of the location."
    }
  }
}