{ "openapi": "3.1.0", "info": { "title": "Carbon Offset Trading Platform API", "description": "A blockchain-enabled platform for trading carbon offsets between project developers and buyers", "version": "1.0.0" }, "paths": { "/": { "get": { "summary": "Root endpoint", "description": "Returns platform information and available endpoints", "responses": { "200": { "description": "Platform information", "content": { "application/json": { "schema": { "type": "object", "properties": { "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "documentation": {"type": "string"}, "health_check": {"type": "string"} } } } } } } } }, "/health": { "get": { "summary": "Health check endpoint", "description": "Returns the health status of the application and its dependencies", "responses": { "200": { "description": "Health status information", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": {"type": "string"}, "database": {"type": "string"}, "environment": {"type": "string"}, "version": {"type": "string"} } } } } } } } } } }