Webex · Schema

RulesDocument

Configuration details of the Rules based on which the Action will be triggered

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string type
childrenRules object childrenRules
View JSON Schema on GitHub

JSON Schema

webex-rulesdocument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RulesDocument",
  "title": "RulesDocument",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "type",
      "example": "nested"
    },
    "childrenRules": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "description": "type",
          "example": "nested"
        }
      },
      "description": "childrenRules",
      "discriminator": {
        "propertyName": "type"
      }
    }
  },
  "description": "Configuration details of the Rules based on which the Action will be triggered",
  "example": {
    "logic": "OR",
    "args": [
      "item buy,price,integer,Sum GT 100",
      "item buy,sku,integer,Count GT 5"
    ]
  },
  "discriminator": {
    "propertyName": "type"
  }
}