fastify-openapi-glue
Version:
generate a fastify configuration from an openapi specification
34 lines (33 loc) • 586 B
JSON
{
"swagger": "2.0",
"info": {
"title": "Test swagger",
"description": "testing the fastify swagger api",
"version": "0.1.0"
},
"host": "localhost",
"schemes": ["http"],
"consumes": ["application/json"],
"produces": ["application/json"],
"paths": {
"/pathParam/{id}": {
"get": {
"operationId": "getPathParam",
"summary": "Test path parameters",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"type": "integer"
}
],
"responses": {
"200": {
"description": "ok"
}
}
}
}
}
}