{
  "openapi": "3.1.0",
  "info": {
    "title": "StaticClock runtime",
    "version": "0.1.0",
    "description": "Chrono-linguistic release advisory. Advisory only, not a scheduler. It does not help messages travel farther. It helps them arrive intact."
  },
  "servers": [
    {
      "url": "https://staticclock-download-tracker.vibelock.workers.dev"
    }
  ],
  "paths": {
    "/v1/health": {
      "get": {
        "operationId": "health",
        "summary": "Liveness",
        "responses": {
          "200": {
            "description": "ok",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/v1/anchors": {
      "get": {
        "operationId": "anchors",
        "summary": "List Top-30 geographic anchors.",
        "responses": {
          "200": {
            "description": "anchors",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/v1/advisory": {
      "post": {
        "operationId": "advisory",
        "summary": "One advisory for a last-known geo. Optional language/dialect hints.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "geo"
                ],
                "properties": {
                  "geo": {
                    "type": "string"
                  },
                  "language": {
                    "type": "string"
                  },
                  "dialect": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "five-field advisory",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}