fix: fix permissions
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / LogStatusNotification.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "urn:OCPP:Cp:1.6:2020:3:LogStatusNotification.req",
4 "definitions": {
5 "UploadLogStatusEnumType": {
6 "type": "string",
7 "additionalProperties": false,
8 "enum": [
9 "BadMessage",
10 "Idle",
11 "NotSupportedOperation",
12 "PermissionDenied",
13 "Uploaded",
14 "UploadFailure",
15 "Uploading"
16 ]
17 }
18 },
19 "type": "object",
20 "additionalProperties": false,
21 "properties": {
22 "status": {
23 "$ref": "#/definitions/UploadLogStatusEnumType"
24 },
25 "requestId": {
26 "type": "integer"
27 }
28 },
29 "required": ["status"]
30 }