FilterOperand

A single operand in a filter expression, either a field reference or a nested expression

Properties

Name Type Description
field string Field name to filter on
value string Value to compare against
View JSON Schema on GitHub

JSON Schema

automation-anywhere-filteroperand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilterOperand",
  "title": "FilterOperand",
  "type": "object",
  "description": "A single operand in a filter expression, either a field reference or a nested expression",
  "properties": {
    "field": {
      "type": "string",
      "description": "Field name to filter on"
    },
    "value": {
      "type": "string",
      "description": "Value to compare against"
    }
  }
}