Weather.gov · Schema
OfficeHeadline
OfficeHeadline schema from weather.gov API
WeatherGovernmentUnited StatesForecastingAlertsOpen Data
Properties
| Name | Type | Description |
|---|---|---|
| @context | object | |
| @id | string | |
| id | string | |
| office | string | |
| important | boolean | |
| issuanceTime | string | |
| link | string | |
| name | string | |
| title | string | |
| summary | stringnull | |
| content | string |
JSON Schema
{
"$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-office-headline-schema.json",
"title": "OfficeHeadline",
"description": "OfficeHeadline schema from weather.gov API",
"type": "object",
"properties": {
"@context": {
"$ref": "#/components/schemas/JsonLdContext"
},
"@id": {
"type": "string",
"format": "uri"
},
"id": {
"type": "string"
},
"office": {
"type": "string",
"format": "uri"
},
"important": {
"type": "boolean"
},
"issuanceTime": {
"type": "string",
"format": "date-time"
},
"link": {
"type": "string",
"format": "uri"
},
"name": {
"type": "string"
},
"title": {
"type": "string"
},
"summary": {
"type": [
"string",
"null"
]
},
"content": {
"type": "string"
}
}
}