{
    "openapi": "3.1.0",
    "info": {
        "title": "Deffe.com public AI-agent API",
        "version": "1.0.0",
        "description": "Read-only public endpoints that help AI agents understand Deffe.com accurately. No authenticated account, billing or project actions are exposed here."
    },
    "servers": [
        {
            "url": "https://deffe.com"
        }
    ],
    "paths": {
        "/agent/v1/{resource}.json": {
            "get": {
                "summary": "Read a public Deffe AI-agent resource",
                "description": "Returns one public read-only resource for AI agents. Supported resources: index, company, product, features, pricing, faq, contact.",
                "parameters": [
                    {
                        "name": "resource",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "enum": [
                                "index",
                                "company",
                                "product",
                                "features",
                                "pricing",
                                "faq",
                                "contact"
                            ]
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Public AI-agent resource",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "object",
                                    "additionalProperties": true
                                }
                            }
                        }
                    },
                    "404": {
                        "description": "Unknown resource"
                    }
                }
            }
        }
    }
}