Webex · Schema

JsonValue

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
valueType string The type of the JSON value.
View JSON Schema on GitHub

JSON Schema

webex-jsonvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JsonValue",
  "title": "JsonValue",
  "type": "object",
  "properties": {
    "valueType": {
      "type": "string",
      "enum": [
        "ARRAY",
        "OBJECT",
        "STRING",
        "NUMBER",
        "TRUE",
        "FALSE",
        "NULL"
      ],
      "description": "The type of the JSON value."
    }
  }
}