{
  "openapi": "3.1.0",
  "info": {
    "title": "Shalin Siriwardhana Public Discovery API",
    "version": "1.0.0",
    "description": "Public read-only endpoints for site discovery, search data, and agent metadata."
  },
  "servers": [
    {
      "url": "https://shalinsiriwardana.asia"
    }
  ],
  "paths": {
    "/search.json": {
      "get": {
        "summary": "Local search index",
        "responses": {
          "200": {
            "description": "A JSON search index of published posts.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "summary": "XML sitemap",
        "responses": {
          "200": {
            "description": "Sitemap with public URLs."
          }
        }
      }
    },
    "/status.json": {
      "get": {
        "summary": "Public site status",
        "responses": {
          "200": {
            "description": "Build and publication status."
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog",
        "responses": {
          "200": {
            "description": "Linkset API catalog.",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  },
  "x-post-count": 145
}
