Commit | Line | Data |
---|---|---|
d270cc87 | 1 | { |
98fc1389 | 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
d270cc87 | 3 | "$id": "urn:OCPP:Cp:2:2020:3:GetTransactionStatusResponse", |
98fc1389 | 4 | "$comment": "OCPP 2.0.1 FINAL", |
d270cc87 JB |
5 | "definitions": { |
6 | "CustomDataType": { | |
7 | "description": "This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.", | |
8 | "javaType": "CustomData", | |
9 | "type": "object", | |
10 | "properties": { | |
11 | "vendorId": { | |
12 | "type": "string", | |
13 | "maxLength": 255 | |
14 | } | |
15 | }, | |
16 | "required": ["vendorId"] | |
17 | } | |
18 | }, | |
19 | "type": "object", | |
20 | "additionalProperties": false, | |
21 | "properties": { | |
22 | "customData": { | |
23 | "$ref": "#/definitions/CustomDataType" | |
24 | }, | |
25 | "ongoingIndicator": { | |
26 | "description": "Whether the transaction is still ongoing.\r\n", | |
27 | "type": "boolean" | |
28 | }, | |
29 | "messagesInQueue": { | |
30 | "description": "Whether there are still message to be delivered.\r\n", | |
31 | "type": "boolean" | |
32 | } | |
33 | }, | |
34 | "required": ["messagesInQueue"] | |
35 | } |