Add OCA security whitepaper JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / SecurityEventNotification.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "urn:OCPP:Cp:1.6:2020:3:SecurityEventNotification.req",
4 "type": "object",
5 "additionalProperties": false,
6 "properties": {
7 "type": {
8 "type": "string",
9 "maxLength": 50
10 },
11 "timestamp": {
12 "type": "string",
13 "format": "date-time"
14 },
15 "techInfo": {
16 "type": "string",
17 "maxLength": 255
18 }
19 },
20 "required": ["type", "timestamp"]
21 }