oma-json
Version:
JSON schemas description from LwM2M [Open Mobile Alliance](http://www.openmobilealliance.org/wp/OMNA/LwM2M/LwM2MRegistry.html)
33 lines (31 loc) • 780 B
text/typescript
/* tslint:disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* used to represent a 1-3 axis magnetometer with optional compass direction.
*/
export interface Magnetometer {
/**
* If present, the type of sensor defined as the UCUM Unit Definition e.g. “Cel” for Temperature in Celcius.
*/
"5701"?: string;
/**
* The measured value along the X axis.
*/
"5702"?: number;
/**
* The measured value along the Y axis.
*/
"5703"?: number;
/**
* The measured value along the Z axis.
*/
"5704"?: number;
/**
* The compass direction.
*/
"5705"?: number;
}