UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

50 lines (49 loc) 1.7 kB
{ "$id": "GetCompositeScheduleRequest", "comment": "OCPP 2.0.1 FINAL", "definitions": { "CustomDataType": { "description": "Represents OCPP CustomData. Allows vendor-specific extension properties.", "javaType": "CustomData", "type": "object", "properties": { "vendorId": { "type": "string", "maxLength": 255 } }, "required": ["vendorId"] }, "ChargingRateUnitEnumType": { "description": "Can be used to force a power or current profile.\r\n\r\n", "javaType": "ChargingRateUnitEnum", "type": "string", "additionalProperties": true, "enum": ["W", "A"], "tsEnumNames": ["W", "A"] } }, "type": "object", "additionalProperties": true, "properties": { "customData": { "$ref": "#/definitions/CustomDataType" }, "duration": { "description": "Length of the requested schedule in seconds.\r\n\r\n", "type": "integer", "minimum": -2147483648, "maximum": 2147483647 }, "chargingRateUnit": { "$ref": "#/definitions/ChargingRateUnitEnumType" }, "evseId": { "description": "The ID of the EVSE for which the schedule is requested. When evseid=0, the Charging Station will calculate the expected consumption for the grid connection.\r\n", "type": "integer", "minimum": -2147483648, "maximum": 2147483647 } }, "required": ["duration", "evseId"] }