1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/ts-openapi/openapi.json
2020-10-08 10:39:34 +09:00

36 lines
No EOL
647 B
JSON

{
"openapi" : "3.0.3",
"info" : {
"title" : "ts-openapi",
"version" : "1.0.0"
},
"servers" : [ {
"url" : "http://localhost:3000/api"
} ],
"paths" : {
"/hello" : {
"get" : {
"responses" : {
"200" : {
"content" : {
"text/plain" : {
"schema" : {
"$ref" : "#/components/schemas/hello"
}
}
},
"description" : "OK"
}
}
}
}
},
"components" : {
"schemas" : {
"hello" : {
"pattern" : "^hello$",
"type" : "string"
}
}
}
}