-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Labels
Description
In yaml, the property in isLikeOperands is called items
, in json it is called prefixItems
ogcapi-features/cql2/standard/schema/cql2.yml
Line 106 in 18c2e28
items: |
isLikeOperands:
type: array
minItems: 2
maxItems: 2
items:
oneOf:
- oneOf:
- $ref: '#/components/schemas/characterExpression'
- $ref: '#/components/schemas/propertyRef'
- $ref: '#/components/schemas/functionRef'
- $ref: '#/components/schemas/patternExpression'
"isLikeOperands": { |
"isLikeOperands": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"prefixItems": [
{
"oneOf": [
{"$ref": "#/$defs/characterExpression"},
{"$ref": "#/$defs/propertyRef" },
{"$ref": "#/$defs/functionRef" }
]
},
{"$ref": "#/$defs/patternExpression"}
]
},
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
In review