{
"openapi": "3.0.0",
"info": {
"title": "Basic API",
"version": "1.0.0"
},
"paths": {
"/hello": {
"get": {
"summary": "Say hello",
"responses": {
"200": {
"description": "A hello message",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}