{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "AmbientMagneticItem",
    "description": "SensorDataCollector.AmbientMagneticItem",
    "type": "object",
    "properties": {
        "timestamp": {
            "type": "integer",
            "description": "UTC timestamp in milliseconds"
        },
        "x": {
            "type": "number",
            "precision": 6,
            "description": "the ambient magnetic field along the X axis (in micro-Tesla - uT)"
        },
        "y": {
            "type": "number",
            "precision": 6,
            "description": "the ambient magnetic field along the Y axis (in micro-Tesla - uT)"
        },
        "z": {
            "type": "number",
            "precision": 6,
            "description": "the ambient magnetic field along the Z axis (in micro-Tesla - uT)"
        }
    },
    "required": [
        "timestamp",
        "x",
        "y",
        "z"
    ]
}