Weatherbit · Schema
WeatherAlertGroup
WeatherAlertGroup schema from Weatherbit API
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather
Properties
| Name | Type | Description |
|---|---|---|
| title | string | Brief description of weather alert |
| description | string | Full description of weather alert |
| severity | string | Severity of weather. (Advisory | Watch | Warning) |
| effective_utc | string | Issued time UTC |
| effective_local | string | Issued time local |
| expires_utc | string | Expiration time UTC |
| expires_local | string | Expiration time local |
| uri | string | URI to weather alert |
| alerts | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/weatherbit/refs/heads/main/json-schema/weatherbit-weather-alert-group-schema.json",
"title": "WeatherAlertGroup",
"description": "WeatherAlertGroup schema from Weatherbit API",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Brief description of weather alert",
"example": "Flood Warning issued February 8 at 8:51PM CST expiring February 12 at 8:24AM CST by NWS St Louis MO"
},
"description": {
"type": "string",
"description": "Full description of weather alert",
"example": "Mississippi River at Chester\n\n.This Flood Warning is a result of 1-2 inches of rainfall across\nthe basin earlier this week...\nThe Flood Warning continues for\nthe Mississippi River at Chester\n* until Tuesday morning.\n* At 8:30 PM Friday the stage was 26.8 feet.\n* Flood stage is 27.0 feet.\n* Minor flooding is forecast.\n* The river is forecast to rise above flood stage by tonight and to\ncrest near 29.0 feet by Saturday evening. The river is forecast to\nfall below flood stage by Monday morning.\n* Impact: At 28.0 feet...Unleveed islands near Chester and the prison\nfarm floods.\n* Impact: At 27.0 feet...Flood Stage. Unprotected farmland on right\nbank begins to flood."
},
"severity": {
"type": "string",
"description": "Severity of weather. (Advisory | Watch | Warning)",
"example": "Warning"
},
"effective_utc": {
"type": "string",
"description": "Issued time UTC",
"example": "2019-02-09 02:51:00"
},
"effective_local": {
"type": "string",
"description": "Issued time local",
"example": "2019-02-08 21:51:00"
},
"expires_utc": {
"type": "string",
"description": "Expiration time UTC",
"example": "2019-02-10 02:51:00"
},
"expires_local": {
"type": "string",
"description": "Expiration time local",
"example": "2019-02-09 21:51:00"
},
"uri": {
"type": "string",
"description": "URI to weather alert",
"example": "https://api.weather.gov/alerts/NWS-IDP-PROD-3361975-2942026"
},
"alerts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlertRegionGroup"
}
}
}
}