{
  "openapi": "3.1.0",
  "info": {
    "title": "Afrodita Salon Management Public API",
    "version": "1.0.0",
    "description": "Public API specifications for Afrodita AI platform for beauty salons, hairdressers and barbershops."
  },
  "servers": [
    {
      "url": "https://afrodita.pro",
      "description": "Production Server"
    }
  ],
  "paths": {
    "/health.json": {
      "get": {
        "summary": "Health check",
        "description": "Returns status of the service",
        "responses": {
          "200": {
            "description": "Service is healthy",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": { "type": "string" }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "AI & LLM context",
        "description": "Provides clean markdown context for AI models and search engines",
        "responses": {
          "200": {
            "description": "Markdown summary of Afrodita features and plans",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
