Files
kompendium/kompendium-core/src/test/resources/field_override.json
2022-02-04 17:34:21 +00:00

67 lines
1.6 KiB
JSON

{
"openapi": "3.0.3",
"info": {
"title": "Test API",
"version": "1.33.7",
"description": "An amazing, fully-ish 😉 generated API spec",
"termsOfService": "https://example.com",
"contact": {
"name": "Homer Simpson",
"url": "https://gph.is/1NPUDiM",
"email": "chunkylover53@aol.com"
},
"license": {
"name": "MIT",
"url": "https://github.com/bkbnio/kompendium/blob/main/LICENSE"
}
},
"servers": [
{
"url": "https://myawesomeapi.com",
"description": "Production instance of my API"
},
{
"url": "https://staging.myawesomeapi.com",
"description": "Where the fun stuff happens"
}
],
"paths": {
"/test/field_override": {
"get": {
"tags": [],
"summary": "A Response with a spicy field",
"description": "Important info within!",
"parameters": [],
"responses": {
"200": {
"description": "A successful endeavor",
"content": {
"application/json": {
"schema": {
"properties": {
"real_name": {
"type": "boolean",
"description": "A Field that is super important!"
}
},
"required": [
"real_name"
],
"type": "object"
}
}
}
}
},
"deprecated": false
}
}
},
"components": {
"schemas": {},
"securitySchemes": {}
},
"security": [],
"tags": []
}