hrms-api-org/src/swagger.json

76 lines
1.2 KiB
JSON
Raw Normal View History

2024-01-24 11:39:00 +07:00
{
"openapi": "3.0.0",
"components": {
"examples": {},
"headers": {},
"parameters": {},
"requestBodies": {},
"responses": {},
"schemas": {},
"securitySchemes": {
"bearerAuth": {
"type": "apiKey",
"name": "Authorization",
"description": "Keycloak Bearer Token",
"in": "header"
}
}
},
"info": {
2024-01-24 16:22:16 +07:00
"title": "bma-ehr-organization - API",
2024-01-24 11:39:00 +07:00
"version": "0.0.1",
2024-01-24 16:22:16 +07:00
"description": "ระบบโครงสร้างอัตรากำลัง",
2024-01-24 11:39:00 +07:00
"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"
}
}
}
}
},
2024-01-24 16:22:16 +07:00
"tags": [
"Test"
],
2024-01-24 11:39:00 +07:00
"security": [
{
"bearerAuth": []
}
],
"parameters": []
}
}
},
"servers": [
{
"url": "/"
}
],
"tags": [
{
"name": "Test",
"description": "ทดสอบ"
}
],
"basePath": "/"
}