oma-json
Version:
JSON schemas description from LwM2M [Open Mobile Alliance](http://www.openmobilealliance.org/wp/OMNA/LwM2M/LwM2MRegistry.html)
41 lines (39 loc) • 1.22 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.
*/
/**
* used for demand-response load control and other load control in automation application (not limited to power)
*/
export interface LoadControl {
/**
* The application type of the sensor or actuator as a string, for instance, “Air Pressure”.
*/
"5750"?: string;
/**
* The event identifier as a string.
*/
"5823"?: string;
/**
* Time when the load control event will start started.
*/
"5824"?: number;
/**
* The duration of the load control event.
*/
"5825"?: number;
/**
* The criticality of the event. The device receiving the event will react in an appropriate fashion for the device.
*/
"5826"?: number;
/**
* Defines the maximum energy usage of the receivng device, as a percentage of the device's normal maximum energy usage.
*/
"5827"?: string;
/**
* Defines the duty cycle for the load control event, i.e, what percentage of time the receiving device is allowed to be on.
*/
"5828"?: number;
}