{
  "openapi": "3.1.0",
  "info": {
    "title": "Warconomy static data endpoints",
    "version": "1.187.0",
    "summary": "Read-only catalog of prerendered static files. No runtime API.",
    "description": "Every path below is a STATIC, prerendered file served like any other asset. There is no runtime API: no authentication, no API keys, no rate limits, no mutation (no POST/PUT/PATCH/DELETE), no query parameters, no servers to call, and no SLA or real-time guarantee. Values are manually maintained, source-linked, and not real-time. Fetch and cache these like files; cite the linked source for any figure.",
    "contact": {
      "name": "Warconomy",
      "url": "https://warconomy.com"
    },
    "license": {
      "name": "See dataset license",
      "url": "https://warconomy.com/datasets/conflict-economic-impact"
    }
  },
  "servers": [
    {
      "url": "https://warconomy.com",
      "description": "Static site (prerendered files only; not a runtime API)."
    }
  ],
  "paths": {
    "/datasets/conflict-economic-impact/data.json": {
      "get": {
        "summary": "Full dataset export",
        "description": "The complete machine-readable dataset (data.json).",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy — conflict economic-impact dataset",
                  "version": "1.187.0",
                  "asOf": "2026-06-05",
                  "observations": [
                    {
                      "id": "obs-brent-2026-05",
                      "value": 72.3,
                      "unit": "USD/bbl",
                      "dataMode": "live",
                      "sourceId": "eia-brent",
                      "confidence": "high",
                      "asOf": "2026-05-01"
                    }
                  ],
                  "sources": [
                    {
                      "id": "eia-brent",
                      "publisher": "U.S. EIA",
                      "url": "https://www.eia.gov/"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/graph.json": {
      "get": {
        "summary": "Citation graph",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "summary": {
                    "nodeCount": 227,
                    "edgeCount": 410
                  },
                  "nodes": [
                    {
                      "id": "source:eia-brent",
                      "type": "source"
                    }
                  ],
                  "edges": [
                    {
                      "from": "observation:obs-brent-2026-05",
                      "to": "source:eia-brent"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/manifest.json": {
      "get": {
        "summary": "Researcher manifest",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy researcher manifest",
                  "manifestVersion": 3,
                  "exports": {
                    "dataset": "/datasets/conflict-economic-impact/data.json"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/provenance.json": {
      "get": {
        "summary": "Per-record provenance (JSON)",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/provenance.csv": {
      "get": {
        "summary": "Per-record provenance (CSV)",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/provenance.jsonl": {
      "get": {
        "summary": "Per-record provenance (JSONL)",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/versions/data.json": {
      "get": {
        "summary": "Version registry",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/versions/{version}/data.json": {
      "get": {
        "summary": "Frozen per-version payload",
        "description": "Byte-stable full payload for a materialized version.",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      },
      "parameters": [
        {
          "name": "version",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string"
          },
          "example": "1.187.0",
          "description": "A materialized dataset version, e.g. 1.31.0."
        }
      ]
    },
    "/datasets/conflict-economic-impact/versions/{version}/diff.json": {
      "get": {
        "summary": "Per-version diff",
        "description": "Value-level diff against the previous materialized version when both are frozen.",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      },
      "parameters": [
        {
          "name": "version",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string"
          },
          "example": "1.187.0",
          "description": "A materialized dataset version."
        }
      ]
    },
    "/sources/{id}/data.json": {
      "get": {
        "summary": "Per-source export",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      },
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string"
          },
          "example": "eia-brent",
          "description": "A source id from /sources/data.json."
        }
      ]
    },
    "/indicators/{id}/data.json": {
      "get": {
        "summary": "Per-indicator export",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      },
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string"
          },
          "example": "obs-brent-2026-05",
          "description": "An observation id from /indicators/data.json."
        }
      ]
    },
    "/categories/{id}/data.json": {
      "get": {
        "summary": "Per-category export",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      },
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string"
          },
          "example": "sanctions",
          "description": "A category id."
        }
      ]
    },
    "/source-health/data.json": {
      "get": {
        "summary": "Source-health checklist",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/data-audit/data.json": {
      "get": {
        "summary": "Data audit results",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/routes/data.json": {
      "get": {
        "summary": "Route catalog",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/api/data.json": {
      "get": {
        "summary": "Static endpoint index",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/api/openapi.json": {
      "get": {
        "summary": "This document (OpenAPI 3.1, static)",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/json": {
                "example": {
                  "name": "Warconomy",
                  "asOf": "2026-06-05",
                  "note": "Static, source-linked export."
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "AI/crawler guide",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/plain": {
                "example": "# Warconomy\n> See https://warconomy.com/llms.txt\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/schema.json": {
      "get": {
        "summary": "JSON Schema: schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/observation.schema.json": {
      "get": {
        "summary": "JSON Schema: observation.schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/source.schema.json": {
      "get": {
        "summary": "JSON Schema: source.schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/series.schema.json": {
      "get": {
        "summary": "JSON Schema: series.schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/graph.schema.json": {
      "get": {
        "summary": "JSON Schema: graph.schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/diff.schema.json": {
      "get": {
        "summary": "JSON Schema: diff.schema.json",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/schema+json": {
                "example": {
                  "$schema": "http://json-schema.org/draft-07/schema#",
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/observations.csv": {
      "get": {
        "summary": "Distribution: observations.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/sources.csv": {
      "get": {
        "summary": "Distribution: sources.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/facts.csv": {
      "get": {
        "summary": "Distribution: facts.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/series.csv": {
      "get": {
        "summary": "Distribution: series.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/glossary.csv": {
      "get": {
        "summary": "Distribution: glossary.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/faq.csv": {
      "get": {
        "summary": "Distribution: faq.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/source-quality.csv": {
      "get": {
        "summary": "Distribution: source-quality.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/graph-nodes.csv": {
      "get": {
        "summary": "Distribution: graph-nodes.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/graph-edges.csv": {
      "get": {
        "summary": "Distribution: graph-edges.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/topics.csv": {
      "get": {
        "summary": "Distribution: topics.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/dashboards.csv": {
      "get": {
        "summary": "Distribution: dashboards.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/categories.csv": {
      "get": {
        "summary": "Distribution: categories.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/query-intents.csv": {
      "get": {
        "summary": "Distribution: query-intents.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/policy-thresholds.csv": {
      "get": {
        "summary": "Distribution: policy-thresholds.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/update-log.csv": {
      "get": {
        "summary": "Distribution: update-log.csv",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "text/csv": {
                "example": "id,value,unit,asOf,sourceId\nobs-brent-2026-05,72.3,USD/bbl,2026-05-01,eia-brent\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/observations.jsonl": {
      "get": {
        "summary": "Distribution: observations.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/sources.jsonl": {
      "get": {
        "summary": "Distribution: sources.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/series.jsonl": {
      "get": {
        "summary": "Distribution: series.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/source-quality.jsonl": {
      "get": {
        "summary": "Distribution: source-quality.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/topics.jsonl": {
      "get": {
        "summary": "Distribution: topics.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/dashboards.jsonl": {
      "get": {
        "summary": "Distribution: dashboards.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/categories.jsonl": {
      "get": {
        "summary": "Distribution: categories.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/query-intents.jsonl": {
      "get": {
        "summary": "Distribution: query-intents.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/policy-thresholds.jsonl": {
      "get": {
        "summary": "Distribution: policy-thresholds.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    },
    "/datasets/conflict-economic-impact/update-log.jsonl": {
      "get": {
        "summary": "Distribution: update-log.jsonl",
        "responses": {
          "200": {
            "description": "Static prerendered file.",
            "content": {
              "application/x-ndjson": {
                "example": "{\"id\":\"obs-brent-2026-05\",\"value\":72.3,\"unit\":\"USD/bbl\"}\n"
              }
            }
          }
        }
      }
    }
  },
  "x-warconomy": {
    "runtimeApi": false,
    "auth": "none",
    "mutation": "none",
    "realtime": false,
    "examplesIncluded": true,
    "note": "OpenAPI is used here only to enumerate static files; it does not imply a live service. Response examples are illustrative shapes, not current values."
  }
}