Impact Object Schema

This article shows the structure of a weather impact object structure in Json. This structure is valid for /weatherimpactreports endpoint, for GeoJson please check GeoJson reference article.

{
  "id": "796c45d3-40b0-e611-9404-0003ff59b0cc", // Id of the weather impact report
  "observationId": null, // If this impact is linked to an observation, its Id will show up here.
  "siteId": null, // If this impact is linked to a site, its Id will show up here.
  "imageId": null, // Image of the impact.
  "elevation": null, // Elevation / Height of the coordinates
  "userId": null, // Sender user Id
  "longitude": -1.53282839999997, // Longitude of the impact coordinate
  "latitude": 55.1058485, // Latitude of the impact coordinate
  "reportDate": "2016-11-21T23:15:00Z", // Impact report date
  "weatherImpacts": [ // Contains the collection of impacts / disruptions.
    {
      "hazards": [ // Contains the collection of hazards, which caused this impact. Check "Hazard Types" section for more detail.
        2,
        8,
        11
      ],
      "otherHazard": null, // If "Other" hazard is selected, its description will show up here.
      "type": 1, // The type of the impact. Please check "Impact Types" section for more detail.
      "severity": 4 // The severity of the impact. Please check "Severities" section for more detail.
    },
    {
      "hazards": [
        8,
        11
      ],
      "otherHazard": null,
      "type": 2,
      "severity": 2
    }
  ]
}

Impact Types

Id Description
1 Travel Disruption
2 Property or Infrastructure Damage
3 Personal Health and Safety
4 Utility Disruption
5 Service or Business Disruption
6 Agriculture / Habitat Damage
7 Disruption to Camping Events / Leisure Activities

Severities

Id Description
1 Low
2 Medium
3 High
4 Very High

Hazard Types

Id Description
1 Coastal Impacts
2 Flood
3 Fog
4 Hail
5 Ice
6 Landslide
7 Lightning
8 Rain
9 Snow
10 Wildfire
11 Wind
12 Cyclones and tornadoes
13 Tsunami
14 Dust Storms
15 Frost
16 Other
17 Waterspouts

* You can also use the GetHazards endpoint to access to this list.