-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenapi.yaml
50 lines (50 loc) · 1.38 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"openapi" : "3.0.0",
"info" : {
"title" : "The SpatioTemporal Asset Catalog API - Free Text",
"description" : "Adds parameter to enable free-text searching on text properties.",
"license" : {
"name" : "Apache 2.0",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version" : "0.1.0"
},
"servers" : [ {
"url" : "https://virtserver.swaggerhub.com/cedadev/free-text/1.0.0",
"description" : "SwaggerHub API Auto Mocking"
} ],
"paths" : { },
"components" : {
"schemas" : {
"searchBody" : {
"type" : "object",
"properties" : {
"q" : {
"$ref" : "#/components/schemas/q"
}
},
"description" : "**Optional Extension: ** Free Text\n\nFree-text queries against item properties."
},
"q" : {
"type" : "string",
"description" : "Search string",
"example" : "HadGem"
}
},
"parameters" : {
"q" : {
"name" : "q",
"in" : "query",
"description" : "**Optional Extension:** Free Text\n\nMake free-text queries against properties in items.\nUse the JSON form of the query used in POST.",
"required" : false,
"allowEmptyValue" : true,
"style" : "form",
"explode" : true,
"schema" : {
"type" : "string",
"example" : "HadGem3"
}
}
}
}
}