{ "openapi": "3.1.0", "info": { "title": "{{titleCase name}} API", "version": "0.0.1", "description": "HTTP API for {{titleCase name}}. This document is what the docs site renders — keep it in step with api/src/index.ts." }, "paths": { "/": { "get": { "operationId": "hello", "summary": "Hello", "responses": { "200": { "description": "A greeting", "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] } } } } } } }, "/health": { "get": { "operationId": "health", "summary": "Health check", "responses": { "200": { "description": "The service is up", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": { "type": "string" } }, "required": ["status"] } } } } } } } } }