Migrate all JSON schemas to draft-06 or higher
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / TriggerMessage.json
CommitLineData
e3018bc4 1{
b0342994
JB
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "urn:OCPP:1.6:2019:12:TriggerMessageRequest",
e3018bc4
JB
4 "title": "TriggerMessageRequest",
5 "type": "object",
6 "properties": {
7 "requestedMessage": {
8 "type": "string",
9 "additionalProperties": false,
10 "enum": [
11 "BootNotification",
12 "DiagnosticsStatusNotification",
13 "FirmwareStatusNotification",
14 "Heartbeat",
15 "MeterValues",
16 "StatusNotification"
17 ]
18 },
19 "connectorId": {
20 "type": "integer"
21 }
22 },
23 "additionalProperties": false,
24 "required": ["requestedMessage"]
25}