BarometerReading

Barometer reading data

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
stationPressureInHectopascals number Atmospheric pressure in hPa
timestamp string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-barometerreading-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BarometerReading",
  "title": "BarometerReading",
  "type": "object",
  "description": "Barometer reading data",
  "properties": {
    "stationPressureInHectopascals": {
      "type": "number",
      "format": "double",
      "description": "Atmospheric pressure in hPa"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}