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.

62 lines (61 loc) 2.07 kB
{ "$id": "BootConfigSchema", "description": "Boot configuration used to determine boot process for a charging station", "definitions": { "RegistrationStatusEnumType": { "description": "This contains whether the Charging Station has been registered\r\nwithin the CSMS.\r\n", "javaType": "RegistrationStatusEnum", "type": "string", "additionalProperties": false, "enum": ["Accepted", "Pending", "Rejected"], "tsEnumNames": ["Accepted", "Pending", "Rejected"] }, "StatusInfoType": { "description": "Element providing more information about the status.\r\n", "javaType": "StatusInfo", "type": "object", "properties": { "reasonCode": { "description": "A predefined code for the reason why the status is returned in this response. The string is case-insensitive.\r\n", "type": "string", "maxLength": 20 }, "additionalInfo": { "description": "Additional text to provide detailed information.\r\n", "type": "string", "maxLength": 512 } }, "required": ["reasonCode"] } }, "properties": { "heartbeatInterval": { "type": "integer" }, "bootRetryInterval": { "type": "integer" }, "status": { "$ref": "#/definitions/RegistrationStatusEnumType" }, "statusInfo": { "$ref": "#/definitions/StatusInfoType" }, "getBaseReportOnPending": { "type": "boolean" }, "setVariableIds": { "type": "array", "additionalItems": false, "items": { "type": "integer" } }, "bootWithRejectedVariables": { "type": "boolean" } }, "required": ["status"], "type": "object" }