{
    "openapi": "3.1.0",
    "info": {
        "title": "Oilly Hair Salon \u2014 Public Site API",
        "version": "1.0.0",
        "description": "Public information endpoints for Oilly Hair Salon, Bangkok. No authentication required.",
        "contact": {
            "name": "Oilly Hair Salon",
            "url": "https://lin.ee/kCT08OX"
        }
    },
    "servers": [
        {
            "url": "https://oillyhair.com"
        }
    ],
    "paths": {
        "/llms.txt": {
            "get": {
                "summary": "Short agent guide (llms.txt standard)",
                "responses": {
                    "200": {
                        "description": "text/plain markdown summary of salon"
                    }
                }
            }
        },
        "/llms-full.txt": {
            "get": {
                "summary": "Full agent guide with dynamic services + blog index",
                "responses": {
                    "200": {
                        "description": "text/plain markdown full guide"
                    }
                }
            }
        },
        "/.well-known/agents.json": {
            "get": {
                "summary": "Agent discovery manifest",
                "responses": {
                    "200": {
                        "description": "application/json"
                    }
                }
            }
        },
        "/.well-known/ai-plugin.json": {
            "get": {
                "summary": "ChatGPT-style plugin manifest",
                "responses": {
                    "200": {
                        "description": "application/json"
                    }
                }
            }
        },
        "/wp-json/wp/v2/pages": {
            "get": {
                "summary": "List published WordPress pages (REST)",
                "parameters": [
                    {
                        "name": "per_page",
                        "in": "query",
                        "schema": {
                            "type": "integer",
                            "default": 10
                        }
                    },
                    {
                        "name": "slug",
                        "in": "query",
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "application/json"
                    }
                }
            }
        },
        "/wp-json/wp/v2/posts": {
            "get": {
                "summary": "List published blog posts (REST)",
                "responses": {
                    "200": {
                        "description": "application/json"
                    }
                }
            }
        }
    }
}