Files
gswagger/testdata/headers.json
2024-11-08 19:52:34 +01:00

36 lines
657 B
JSON

{
"info": {
"title": "test openapi title",
"version": "test openapi version"
},
"openapi": "3.0.0",
"paths": {
"/projects": {
"get": {
"parameters": [
{
"in": "header",
"name": "bar",
"schema": {
"type": "string"
}
},
{
"description": "foo description",
"in": "header",
"name": "foo",
"schema": {
"type": "string"
}
}
],
"responses": {
"default": {
"description": ""
}
}
}
}
}
}