{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "AmbientPressureItem",
    "description": "SensorDataCollector.AmbientPressureItem",
    "type": "object",
    "properties": {
        "timestamp": {
            "type": "integer",
            "description": "UTC timestamp in milliseconds"
        },
        "value": {
            "type": "number",
            "precision": 6,
            "description": "Ambient air pressure in hPa or mbar"
        }
    },
    "required": [
        "timestamp",
        "value"
    ]
}