AviationWeather AIRMET

Decoded AIRMET as returned by GET /api/data/airmet?format=json. AIRMETs are typically issued for Alaska and the legacy CONUS text product.

AviationWeatherGovernmentNOAANWSMETARTAFPIREPSIGMETAIRMETOpen DataPublic APIs

Properties

Name Type Description
airmetId integer
icaoId string Issuing center ICAO.
issueTime string
validTimeFrom integer
validTimeTo integer
product string
hazard string
rawAirmet string
View JSON Schema on GitHub

JSON Schema

aviationweather-airmet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/aviationweather/json-schema/aviationweather-airmet-schema.json",
  "title": "AviationWeather AIRMET",
  "description": "Decoded AIRMET as returned by GET /api/data/airmet?format=json. AIRMETs are typically issued for Alaska and the legacy CONUS text product.",
  "type": "object",
  "properties": {
    "airmetId":      { "type": "integer" },
    "icaoId":        { "type": "string", "description": "Issuing center ICAO." },
    "issueTime":     { "type": "string" },
    "validTimeFrom": { "type": "integer" },
    "validTimeTo":   { "type": "integer" },
    "product":       { "type": "string", "enum": ["SIERRA","TANGO","ZULU"] },
    "hazard":        { "type": "string", "enum": ["IFR","MTN OBSC","TURB","ICE","FZLVL","SFC WIND"] },
    "rawAirmet":     { "type": "string" }
  }
}