zaraz_timer-rule

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string
id string
settings object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zaraz-timer-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zaraz_timer-rule",
  "title": "zaraz_timer-rule",
  "properties": {
    "action": {
      "enum": [
        "timer"
      ],
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "settings": {
      "properties": {
        "interval": {
          "minimum": 50,
          "type": "integer"
        },
        "limit": {
          "minimum": 0,
          "type": "integer"
        }
      },
      "required": [
        "interval",
        "limit"
      ],
      "type": "object"
    }
  },
  "required": [
    "id",
    "action",
    "settings"
  ],
  "type": "object"
}