Add OCA security whitepaper JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / GetLogResponse.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "urn:OCPP:Cp:1.6:2020:3:GetLog.conf",
4 "definitions": {
5 "LogStatusEnumType": {
6 "type": "string",
7 "additionalProperties": false,
8 "enum": ["Accepted", "Rejected", "AcceptedCanceled"]
9 }
10 },
11 "type": "object",
12 "additionalProperties": false,
13 "properties": {
14 "status": {
15 "$ref": "#/definitions/LogStatusEnumType"
16 },
17 "filename": {
18 "type": "string",
19 "maxLength": 255
20 }
21 },
22 "required": ["status"]
23 }