Skip to content

Commit b6305dd

Browse files
committed
Merge schema
1 parent f25a7b4 commit b6305dd

1 file changed

Lines changed: 30 additions & 3 deletions

File tree

docs/openapi.json

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19255,12 +19255,39 @@
1925519255
}
1925619256
],
1925719257
"title": "Filters",
19258-
"description": "Solr provider filter payload passed through as params['solr'].",
19258+
"description": "Solr provider filter payload passed through as params['solr']. Supports structured metadata filters (eq, ne, in, nin comparison operators). Legacy filter-only objects (e.g. fq) are still accepted.",
1925919259
"examples": [
19260+
{
19261+
"filters": {
19262+
"key": "product",
19263+
"type": "eq",
19264+
"value": "openshift_container_platform"
19265+
}
19266+
},
19267+
{
19268+
"filters": {
19269+
"filters": [
19270+
{
19271+
"key": "product",
19272+
"type": "eq",
19273+
"value": "openshift_container_platform"
19274+
},
19275+
{
19276+
"key": "version",
19277+
"type": "in",
19278+
"value": [
19279+
"4.14",
19280+
"4.15",
19281+
"4.16"
19282+
]
19283+
}
19284+
],
19285+
"type": "and"
19286+
}
19287+
},
1926019288
{
1926119289
"fq": [
19262-
"product:*openshift*",
19263-
"product_version:*4.16*"
19290+
"product:*openshift*"
1926419291
]
1926519292
}
1926619293
]

0 commit comments

Comments
 (0)