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

27 lines
427 B
JSON

{
"info": {
"title": "test openapi title",
"version": "test openapi version"
},
"openapi": "3.0.0",
"paths": {
"/users": {
"get": {
"responses": {
"default": {
"description": ""
}
},
"security": [
{
"api_key": [],
"auth": [
"resource.write"
]
}
]
}
}
}
}