Weather.gov · JSON Structure

Weather Gov Geo Json Feature Collection Structure

A GeoJSON feature collection. Please refer to IETF RFC 7946 for information on the GeoJSON format.

Type: object Properties: 3 Required: 2
WeatherGovernmentUnited StatesForecastingAlertsOpen Data

GeoJsonFeatureCollection is a JSON Structure definition published by Weather.gov, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

@context type features

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weather-gov/refs/heads/main/json-structure/weather-gov-geo-json-feature-collection-structure.json",
  "name": "GeoJsonFeatureCollection",
  "description": "A GeoJSON feature collection. Please refer to IETF RFC 7946 for information on the GeoJSON format.",
  "type": "object",
  "properties": {
    "@context": {
      "$ref": "#/components/schemas/JsonLdContext"
    },
    "type": {
      "enum": [
        "FeatureCollection"
      ],
      "type": "string"
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GeoJsonFeature"
      }
    }
  },
  "required": [
    "type",
    "features"
  ]
}