{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "GeomagneticRotationVector",
    "type": "object",
    "additionalProperties": false,
    "description": "GeomagneticRotationVector",
    "properties": {
        "log_context": {
            "$ref": "/resources/schema/analytics/client/v4/LogContext.json",
            "description": "Required Log Context Reference"
        },
        "event_name": {
            "type": "string",
            "enum": [
                "GEOMAGNETIC_ROTATION_VECTOR"
            ]
        },
        "schema_definition": {
            "type": "string",
            "enum": [
                "GeomagneticRotationVector"
            ]
        },
        "geomagnetic_rotation_vector_list": {
            "type": "array",
            "items": {
                "$ref": "/resources/schema/analytics/client/v4/type/GeomagneticRotationVectorItem.json"
            },
            "description": "Required list of rotation vector value based on geomagnetic field from device at periodic intervals"
        }
    },
    "required": [
        "log_context",
        "event_name",
        "schema_definition",
        "geomagnetic_rotation_vector_list"
    ]
}