Skip to content

Commit 7eb795d

Browse files
committed
Fix search spec
1 parent a17096f commit 7eb795d

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

openapi_specs/Search.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,17 @@
630630
"type": "object",
631631
"properties": {
632632
"kind": {
633-
"type": "string"
633+
"oneOf": [
634+
{
635+
"type": "string"
636+
},
637+
{
638+
"type": "array",
639+
"items": {
640+
"type": "string"
641+
}
642+
}
643+
]
634644
},
635645
"limit": {
636646
"minimum": 0,
@@ -793,7 +803,17 @@
793803
"type": "object",
794804
"properties": {
795805
"kind": {
796-
"type": "string"
806+
"oneOf": [
807+
{
808+
"type": "string"
809+
},
810+
{
811+
"type": "array",
812+
"items": {
813+
"type": "string"
814+
}
815+
}
816+
]
797817
},
798818
"limit": {
799819
"minimum": 0,

0 commit comments

Comments
 (0)