oma-json
Version:
JSON schemas description from LwM2M [Open Mobile Alliance](http://www.openmobilealliance.org/wp/OMNA/LwM2M/LwM2MRegistry.html)
29 lines (27 loc) • 1.06 kB
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.
*/
/**
* Summarize several digital inputs to one value by mapping each bit to a digital input.
*/
export interface Bitmap {
/**
* The application type of the sensor or actuator as a string, for instance, “Air Pressure”.
*/
"5750"?: string;
/**
* Integer in which each of the bits are associated with specific digital input value. Represented as a binary signed integer in network byte order, and in two's complement representation. Using values in range 0-127 is recommended to avoid ambiguities with byte order and negative values.
*/
"5910"?: number;
/**
* Reset the Bitmap Input value.
*/
"5911"?: string;
/**
* The description of each bit as a string. First instance describes the least significant bit, second instance the second least significant bit.
*/
"5912"?: string;
}