Schema

Conventions for formatting datasets and metadata.

Conventions

This page is the contract scrapers can rely on. Keep it stable.

Dataset metadata JSON (example)

{
  "id": "EXAMPLE_DATASET_001",
  "title": "Example Dataset",
  "version": "1.0.0",
  "published_at": "2025-12-17",
  "updated_at": "2025-12-17",
  "license": "https://www.exodus-data.com/license/",
  "source": [
    { "name": "Primary Source Name", "url": "https://example.com/" }
  ],
  "fields": [
    { "name": "field_a", "type": "string", "description": "Example field" },
    { "name": "field_b", "type": "number", "description": "Example numeric field" }
  ]
}