Webex · Schema

Rules

Configuration details of the Rules

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
logic string logic
args array Arguments
View JSON Schema on GitHub

JSON Schema

webex-rules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rules",
  "title": "Rules",
  "type": "object",
  "description": "Configuration details of the Rules",
  "properties": {
    "logic": {
      "type": "string",
      "description": "logic",
      "example": "OR"
    },
    "args": {
      "type": "array",
      "description": "Arguments",
      "example": [
        "item buy,price,integer,Sum GT 100",
        "item buy,sku,integer,Count GT 5"
      ],
      "items": {
        "type": "string"
      }
    }
  }
}