Weather.gov · JSON Structure

Weather Gov Geo Json Feature Structure

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

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

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

Properties

@context id type geometry properties

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-structure.json",
  "name": "GeoJsonFeature",
  "description": "A GeoJSON feature. Please refer to IETF RFC 7946 for information on the GeoJSON format.",
  "type": "object",
  "properties": {
    "@context": {
      "$ref": "#/components/schemas/JsonLdContext"
    },
    "id": {
      "type": "uri"
    },
    "type": {
      "enum": [
        "Feature"
      ],
      "type": "string"
    },
    "geometry": {
      "$ref": "#/components/schemas/GeoJsonGeometry"
    },
    "properties": {
      "type": "object"
    }
  },
  "required": [
    "type",
    "geometry",
    "properties"
  ],
  "additionalProperties": false
}