fist commit
This commit is contained in:
parent
44ac172e54
commit
3c64d6b790
24 changed files with 11978 additions and 0 deletions
73
src/swagger.json
Normal file
73
src/swagger.json
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"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-evaluation-nodeservice - 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"security": [
|
||||
{
|
||||
"bearerAuth": []
|
||||
}
|
||||
],
|
||||
"parameters": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"servers": [
|
||||
{
|
||||
"url": "/"
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
{
|
||||
"name": "Test",
|
||||
"description": "ทดสอบ"
|
||||
}
|
||||
],
|
||||
"basePath": "/"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue