WattTime · Schema

HistoricalDownloadResponse

HistoricalDownloadResponse schema from WattTime API

EmissionsClimateCarbonEnergyElectricity GridSustainabilityClean Energy

Properties

Name Type Description
region string Grid region identifier.
signal_type string Signal type.
model string Model version date used.
download_url string URL to download the historical CSV file.
View JSON Schema on GitHub

JSON Schema

watttime-historical-download-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/watttime/refs/heads/main/json-schema/watttime-historical-download-response-schema.json",
  "title": "HistoricalDownloadResponse",
  "description": "HistoricalDownloadResponse schema from WattTime API",
  "type": "object",
  "properties": {
    "region": {
      "type": "string",
      "description": "Grid region identifier.",
      "example": "CAISO_NORTH"
    },
    "signal_type": {
      "type": "string",
      "description": "Signal type.",
      "example": "co2_moer"
    },
    "model": {
      "type": "string",
      "description": "Model version date used.",
      "example": "2026-03-01"
    },
    "download_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to download the historical CSV file.",
      "example": "https://storage.watttime.org/historical/CAISO_NORTH_co2_moer_2023.csv.gz"
    }
  }
}