Dropbox · Schema

SubFormFieldRuleTrigger

Documents

Properties

Name Type Description
id string _t__Sub::FormFieldRuleTrigger::ID
operator string _t__Sub::FormFieldRuleTrigger::OPERATOR
value string _t__Sub::FormFieldRuleTrigger::VALUE_SINGLE
values array _t__Sub::FormFieldRuleTrigger::VALUE_MULTI
View JSON Schema on GitHub

JSON Schema

dropbox-subformfieldruletrigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubFormFieldRuleTrigger",
  "title": "SubFormFieldRuleTrigger",
  "required": [
    "id",
    "operator"
  ],
  "properties": {
    "id": {
      "description": "_t__Sub::FormFieldRuleTrigger::ID",
      "type": "string"
    },
    "operator": {
      "description": "_t__Sub::FormFieldRuleTrigger::OPERATOR",
      "type": "string",
      "enum": [
        "any",
        "is",
        "match",
        "none",
        "not"
      ]
    },
    "value": {
      "description": "_t__Sub::FormFieldRuleTrigger::VALUE_SINGLE",
      "type": "string"
    },
    "values": {
      "description": "_t__Sub::FormFieldRuleTrigger::VALUE_MULTI",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "type": "object"
}