{ "openapi": "3.0.0", "components": { "examples": {}, "headers": {}, "parameters": {}, "requestBodies": {}, "responses": {}, "schemas": {}, "securitySchemes": { "bearerAuth": { "type": "apiKey", "name": "Authorization", "description": "Keycloak Bearer Token", "in": "header" } } }, "info": { "title": "bma-ehr-organization - API", "version": "0.0.1", "description": "ระบบโครงสร้างอัตรากำลัง", "license": { "name": "by Frappet", "url": "https://frappet.com" } }, "paths": { "/hello": { "get": { "operationId": "GET", "responses": { "200": { "description": "Ok", "content": { "application/json": { "schema": { "properties": { "message": { "type": "string" } }, "required": [ "message" ], "type": "object" } } } } }, "tags": [ "Test" ], "security": [ { "bearerAuth": [] } ], "parameters": [] } } }, "servers": [ { "url": "/" } ], "tags": [ { "name": "Test", "description": "ทดสอบ" } ], "basePath": "/" }