Webex · Schema

location

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Location identifier associated with the members.
name string Location name associated with the member.
View JSON Schema on GitHub

JSON Schema

webex-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/location",
  "title": "location",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzJiNDkyZmZkLTRjNGItNGVmNS04YzAzLWE1MDYyYzM4NDA5Mw",
      "description": "Location identifier associated with the members."
    },
    "name": {
      "type": "string",
      "example": "MainOffice",
      "description": "Location name associated with the member."
    }
  }
}