{
  "openapi": "3.1.0",
  "info": {
    "title": "Tinos Greek Public Site",
    "version": "1.0.0",
    "description": "Public, read-only resources for Tinos Greek agent discovery."
  },
  "servers": [
    {
      "url": "https://tinosgreek.com"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Homepage",
        "description": "Returns the public HTML homepage for Tinos Greek.",
        "operationId": "getHomepage",
        "responses": {
          "200": {
            "description": "Homepage HTML",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/site.md": {
      "get": {
        "summary": "Markdown site summary",
        "description": "Returns a concise markdown representation of the public Tinos Greek site information.",
        "operationId": "getSiteMarkdown",
        "responses": {
          "200": {
            "description": "Markdown summary",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog",
        "description": "Returns the RFC 9727 API catalog linkset.",
        "operationId": "getApiCatalog",
        "responses": {
          "200": {
            "description": "API catalog linkset",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/agent-skills/index.json": {
      "get": {
        "summary": "Agent skills discovery index",
        "description": "Returns the public agent skills index.",
        "operationId": "getAgentSkillsIndex",
        "responses": {
          "200": {
            "description": "Agent skills index",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
