Webex · Schema

getOrgSettingResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
key string Key of the setting.
value boolean Value of the setting.
name string Name of the setting.
View JSON Schema on GitHub

JSON Schema

webex-getorgsettingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/getOrgSettingResponse",
  "title": "getOrgSettingResponse",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "example": "allow-admin-invite-emails",
      "description": "Key of the setting."
    },
    "value": {
      "type": "boolean",
      "description": "Value of the setting."
    },
    "name": {
      "type": "string",
      "example": "Automatic Activation Emails",
      "description": "Name of the setting."
    }
  }
}