/api/demo/hello: get: tags: [Demo] summary: Hello world endpoint description: Simple test endpoint that returns a greeting message responses: '200': description: Successful response content: application/json: schema: type: object properties: status: type: string example: success message: type: string example: Hello, World! /api/demo/ping: get: tags: [Demo] summary: Ping endpoint description: Health check endpoint to verify API is running responses: '200': description: API is running content: application/json: schema: type: object properties: status: type: string example: success message: type: string example: pong timestamp: type: string format: date-time