{
    "openapi": "3.1.0",
    "info": {
        "title": "DDQ public API",
        "description": "Read-only structured information about DDQ B.V. The MCP endpoint is documented separately through its server card.",
        "version": "1.0.0"
    },
    "servers": [
        {
            "url": "https://ddq.nl"
        }
    ],
    "paths": {
        "/api/company.json": {
            "get": {
                "operationId": "getCompanyInformation",
                "summary": "Get structured DDQ company information",
                "responses": {
                    "200": {
                        "description": "Company information",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "additionalProperties": true
                                }
                            }
                        }
                    }
                }
            }
        },
        "/status.json": {
            "get": {
                "operationId": "getCloudServiceStatus",
                "summary": "Get the current DDQ Cloud service status",
                "responses": {
                    "200": {
                        "description": "Service status",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "additionalProperties": true
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
