mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
36 lines
647 B
JSON
36 lines
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"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|