{
  "openapi": "3.1.0",
  "info": {
    "title": "Web Game Game Official World State API",
    "version": "1.0.0",
    "summary": "Release-aligned current state, events, entities, and history for Night Ash."
  },
  "servers": [
    {
      "url": "https://www.webgamegame.win"
    }
  ],
  "tags": [
    {
      "name": "World state",
      "description": "Canonical current state and durable records."
    }
  ],
  "paths": {
    "/api/world/v1/latest.json": {
      "get": {
        "tags": [
          "World state"
        ],
        "summary": "Current official world state",
        "operationId": "getWorldState",
        "responses": {
          "200": {
            "description": "Current official world state JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/world/v1/events.json": {
      "get": {
        "tags": [
          "World state"
        ],
        "summary": "Current official event feed",
        "operationId": "getWorldEvents",
        "responses": {
          "200": {
            "description": "Current official event feed JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/world/v1/entities.json": {
      "get": {
        "tags": [
          "World state"
        ],
        "summary": "Official entity registry",
        "operationId": "getWorldEntities",
        "responses": {
          "200": {
            "description": "Official entity registry JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/world/v1/history.json": {
      "get": {
        "tags": [
          "World state"
        ],
        "summary": "Official world state history",
        "operationId": "getWorldHistory",
        "responses": {
          "200": {
            "description": "Official world state history JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/world/v1/state.schema.json": {
      "get": {
        "tags": [
          "World state"
        ],
        "summary": "World state JSON Schema",
        "operationId": "getWorldStateSchema",
        "responses": {
          "200": {
            "description": "World state JSON Schema JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
