GeoJson Schema

{
  "type": "FeatureCollection",
  "crs": {
    "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" },
    "type": "name"
  },
  "features": [ // List of observations
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [ 1.921427, 42.39833 ] // Coordinates of the observation in [ Longitude, Latitude ] format
      },
      "properties": {
        "reportId": "201612187kkbcmsfcoe6pfyyyyb96smacr", // Id of the observation
        "msi": "22678525", // SiteId
        "siteId": "22678525", // SiteId
        "reportStartDateTime": "2016-12-18T20:59:58Z", // Observation start date
        "reportEndDateTime": "2016-12-18T20:59:58Z", // Observation end date (main date)
        "type": "jtwr", // Type of the feature. Check “Feature Type” section for detail.
        "observationType": 1, // Type of the observation
        "softwareType": "meteohub", // Software used to send this observation
        "collectionName": 1, // Collection Name / Id
        "version": 1, // Revision version number. Starts from 1.
        "primary": {
          "dt": -3.6111111111111112, // Air Temperature (Dry Bulb) in Celsius
          "dws": 1.7379511044456706, // Wind Speed in mph (for BOM Knots)
          "dwd": 90.0, // Wind Direction in Degrees
          "drr": 0.0, // Rainfall Rate in mm/hr
          "dra": 0.0, // Rainfall Amount in mm
          "dm": 895.0226127, // Mean Sea Level Pressure in hPa
          "dh": 78.0, // Humidity in Percentage
          "ds": 0.0, // Snow in mm
          "dwc": 0.0, // Present Weather Code
          "dsm": 0.0, // Soil Moisture in Percentage
          "dp": “”, // Photo Id of the observation
          "dpurl": “”, // Photo URL of the observation
          "di": “” // Attached weather impact Id
        },
        "secondary": {
          "dt": 25.5, // Air Temperature (Dry Bulb) in Fahrenheit
          "dws": 1.7379511044456706, // Wind Speed in Knots (for BOM km/h)
          "dwd": 90.0, // Wind Direction in Degrees
          "drr": 0.0, // Rainfall Rate in inches/hr
          "dra": 0.0, // Rainfall Amount in inches
          "dm": 26.43, // Mean Sea Level Pressure in inches of mercury
          "dh": 78.0, // Humidity in Percentage
          "ds": 0.0, // Snow in inches
          "dwc": 0.0, // Present Weather Code
          "dsm": 0.0, // Soil Moisture in Centibar
          "dp": “”, // Photo Id of the observation
          "dpurl": “”, // Photo URL of the observation
          "di": “” // Attached weather impact Id

        },
        "universal": { } // For the impacts
      }
    }
  ]
}