mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
22 lines
406 B
YAML
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: []
|