Microsoft Windows 10 · Schema
InclinometerReading
Inclinometer reading data
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| pitchDegrees | number | Pitch rotation around X axis |
| rollDegrees | number | Roll rotation around Y axis |
| yawDegrees | number | Yaw rotation around Z axis |
| yawAccuracy | string | |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InclinometerReading",
"title": "InclinometerReading",
"type": "object",
"description": "Inclinometer reading data",
"properties": {
"pitchDegrees": {
"type": "number",
"format": "double",
"description": "Pitch rotation around X axis"
},
"rollDegrees": {
"type": "number",
"format": "double",
"description": "Roll rotation around Y axis"
},
"yawDegrees": {
"type": "number",
"format": "double",
"description": "Yaw rotation around Z axis"
},
"yawAccuracy": {
"type": "string",
"enum": [
"Unknown",
"Unreliable",
"Approximate",
"High"
]
},
"timestamp": {
"type": "string",
"format": "date-time"
}
}
}