Weather.gov · Schema

PointJsonLd

PointJsonLd schema from weather.gov API

WeatherGovernmentUnited StatesForecastingAlertsOpen Data
View JSON Schema on GitHub

JSON Schema

weather-gov-point-json-ld-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weather-gov/refs/heads/main/json-schema/weather-gov-point-json-ld-schema.json",
  "title": "PointJsonLd",
  "description": "PointJsonLd schema from weather.gov API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Point"
    },
    {
      "required": [
        "@context",
        "geometry"
      ],
      "type": "object",
      "properties": {
        "@context": {
          "$ref": "#/components/schemas/JsonLdContext"
        },
        "geometry": {
          "$ref": "#/components/schemas/GeometryString"
        }
      }
    }
  ]
}