mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
68 lines
1.2 KiB
JSON
68 lines
1.2 KiB
JSON
|
{
|
||
|
"swagger": "2.0",
|
||
|
"info": {
|
||
|
"version": "1.0.0",
|
||
|
"title": "Test schema"
|
||
|
},
|
||
|
"host": "petstore.swagger.io",
|
||
|
"basePath": "/v2/",
|
||
|
"parameters": {
|
||
|
"extparam": {
|
||
|
"name": "extParam",
|
||
|
"in": "query",
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
"paths": {
|
||
|
"test1": {
|
||
|
"parameters": [
|
||
|
{
|
||
|
"name": "pathParam",
|
||
|
"in": "path",
|
||
|
"type": "string"
|
||
|
}
|
||
|
],
|
||
|
"get": {
|
||
|
"summary": "test get",
|
||
|
"parameters": [
|
||
|
{
|
||
|
"name": "methodParam",
|
||
|
"in": "path",
|
||
|
"type": "string"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"test2": {
|
||
|
"parameters": [
|
||
|
{ "$ref": "#/parameters/extparam" }
|
||
|
],
|
||
|
"get": {
|
||
|
"summary": "test get",
|
||
|
"parameters": [
|
||
|
{
|
||
|
"name": "methodParam",
|
||
|
"in": "path",
|
||
|
"type": "string"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"test3": {
|
||
|
"parameters": [
|
||
|
{
|
||
|
"name": "pathParam",
|
||
|
"in": "path",
|
||
|
"type": "string"
|
||
|
}
|
||
|
],
|
||
|
"get": {
|
||
|
"summary": "test get",
|
||
|
"parameters": [
|
||
|
{ "$ref": "#/parameters/extparam" }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|