mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 04:19:19 +00:00
* Fixed several issues * More fixes to v3 APIs * More fixes * Fixed more v3 schema issues * fixed campaign filters path * Updated redoc API generator to v10 * Updated redoc api generator action to latest version * Added log to action * Fixed path in action * Added orderBy to saved search * Added some fixes for beta * Fixed duplicate nullable * Triggering checks again * Triggering checks again * More beta fixes * Fixed schema bug' by github action: 7980819692
44 lines
999 B
YAML
44 lines
999 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"
|
|
nullable: true
|
|
value:
|
|
$ref: './Value.yaml'
|
|
children:
|
|
type: array
|
|
nullable: true
|
|
description: List of expressions
|
|
items:
|
|
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"
|
|
nullable: true
|
|
value:
|
|
$ref: './Value.yaml'
|
|
children:
|
|
type: string
|
|
nullable: true
|
|
description: There cannot be anymore nested children. This will always be null.
|
|
example: null
|
|
example: []
|