@@ -32,14 +32,21 @@ paths:
32
32
responses :
33
33
' 200 ' :
34
34
description : A JSON Schema defining the Queryables allowed in CQL expressions
35
- content :
36
- application/schema+json :
37
- schema :
38
- $ref : ' https://json-schema.org/draft/2019-09/schema'
35
+ # content:
36
+ # application/schema+json:
37
+ # schema:
38
+ # $ref: 'https://json-schema.org/draft/2019-09/schema'
39
39
default :
40
40
$ref : ' ../../core/commons.yaml#/components/responses/Error'
41
41
/collections/{collectionId} :
42
42
get :
43
+ parameters :
44
+ - in : path
45
+ name : collectionId
46
+ schema :
47
+ type : string
48
+ required : true
49
+ description : ID of Collection
43
50
responses :
44
51
' 200 ' :
45
52
description : Collection description
@@ -56,15 +63,22 @@ paths:
56
63
This endpoint returns a list of variable terms that can be used in CQL expressions. The
57
64
precise definition of this can be found in the OGC API - Features - Part 3: Filtering and the
58
65
Common Query Language (CQL) specification.
66
+ parameters :
67
+ - in : path
68
+ name : collectionId
69
+ schema :
70
+ type : string
71
+ required : true
72
+ description : ID of Collection
59
73
tags :
60
74
- Queryables
61
75
responses :
62
76
' 200 ' :
63
77
description : A JSON Schema defining the Queryables allowed in CQL expressions filtering only that collection
64
- content :
65
- application/schema+json :
66
- schema :
67
- $ref : ' https://json-schema.org/draft/2019-09/schema'
78
+ # content:
79
+ # application/schema+json:
80
+ # schema:
81
+ # $ref: 'https://json-schema.org/draft/2019-09/schema'
68
82
default :
69
83
$ref : ' ../../core/commons.yaml#/components/responses/Error'
70
84
components :
@@ -125,8 +139,6 @@ components:
125
139
A CQL filter expression in the 'cql-text' encoding.
126
140
type : string
127
141
filter-cql-json :
128
- description : |
129
- A CQL filter expression in the 'cql-json' encoding.
130
142
$ref : ' ./cql.yml#/components/schemas/booleanValueExpression'
131
143
filter-lang :
132
144
description : |
0 commit comments