Files
api-specs/idn/beta/schemas/Expression.yaml
2022-09-02 10:59:29 -04:00

22 lines
406 B
YAML

type: object
properties:
operator:
type: string
description: Operator for the expression
enum:
- AND
- EQUALS
example: "EQUALS"
attribute:
type: string
description: Name for the attribute
example: "location"
value:
$ref: './Value.yaml'
children:
type: array
description: List of expressions
items:
$ref: './Value.yaml'
example: []