{
  "openapi": "3.1.0",
  "info": {
    "title": "fatih.ai Site Index API",
    "version": "1.0.0",
    "description": "Read-only metadata for the public fatih.ai website."
  },
  "servers": [
    {
      "url": "https://fatih.ai"
    }
  ],
  "paths": {
    "/api/site.json": {
      "get": {
        "summary": "Get structured site metadata",
        "operationId": "getSiteIndex",
        "responses": {
          "200": {
            "description": "Structured site metadata",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/status.json": {
      "get": {
        "summary": "Get service status",
        "operationId": "getStatus",
        "responses": {
          "200": {
            "description": "Service status",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    },
                    "site": {
                      "type": "string",
                      "format": "uri"
                    },
                    "updated": {
                      "type": "string",
                      "format": "date"
                    }
                  },
                  "required": [
                    "status",
                    "site",
                    "updated"
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
}
