WattTime · Schema

GridMapsResponse

GeoJSON FeatureCollection of grid region boundaries.

EmissionsClimateCarbonEnergyElectricity GridSustainabilityClean Energy

Properties

Name Type Description
type string GeoJSON type.
features array Array of GeoJSON features representing grid regions.
View JSON Schema on GitHub

JSON Schema

watttime-grid-maps-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-grid-maps-response-schema.json",
  "title": "GridMapsResponse",
  "description": "GeoJSON FeatureCollection of grid region boundaries.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "GeoJSON type.",
      "example": "FeatureCollection"
    },
    "features": {
      "type": "array",
      "description": "Array of GeoJSON features representing grid regions.",
      "items": {
        "type": "object"
      }
    }
  }
}