{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.webgamegame.win/api/economy/v1/snapshot.schema.json",
  "title": "The Black Ledger Daily Snapshot",
  "type": "object",
  "required": [
    "schema_version",
    "id",
    "generated_at",
    "data_as_of",
    "capital_conditions",
    "xai_network",
    "xai_market",
    "liquidity",
    "markets"
  ],
  "properties": {
    "schema_version": {
      "const": "1.0"
    },
    "id": {
      "type": "string",
      "pattern": "^black-ledger-[0-9]{4}-[0-9]{2}-[0-9]{2}$"
    },
    "generated_at": {
      "type": "string",
      "format": "date-time"
    },
    "data_as_of": {
      "type": "string",
      "format": "date"
    },
    "capital_conditions": {
      "type": "object"
    },
    "xai_network": {
      "type": "object"
    },
    "xai_market": {
      "type": "object"
    },
    "liquidity": {
      "type": "object"
    },
    "markets": {
      "type": "object"
    }
  }
}
