fix: fix permissions
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 2.0 / GetCertificateStatusResponse.json
CommitLineData
d270cc87 1{
98fc1389 2 "$schema": "http://json-schema.org/draft-07/schema#",
d270cc87 3 "$id": "urn:OCPP:Cp:2:2020:3:GetCertificateStatusResponse",
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 "GetCertificateStatusEnumType": {
19 "description": "This indicates whether the charging station was able to retrieve the OCSP certificate status.\r\n",
20 "javaType": "GetCertificateStatusEnum",
21 "type": "string",
22 "additionalProperties": false,
23 "enum": ["Accepted", "Failed"]
24 },
25 "StatusInfoType": {
26 "description": "Element providing more information about the status.\r\n",
27 "javaType": "StatusInfo",
28 "type": "object",
29 "additionalProperties": false,
30 "properties": {
31 "customData": {
32 "$ref": "#/definitions/CustomDataType"
33 },
34 "reasonCode": {
35 "description": "A predefined code for the reason why the status is returned in this response. The string is case-insensitive.\r\n",
36 "type": "string",
37 "maxLength": 20
38 },
39 "additionalInfo": {
40 "description": "Additional text to provide detailed information.\r\n",
41 "type": "string",
42 "maxLength": 512
43 }
44 },
45 "required": ["reasonCode"]
46 }
47 },
48 "type": "object",
49 "additionalProperties": false,
50 "properties": {
51 "customData": {
52 "$ref": "#/definitions/CustomDataType"
53 },
54 "status": {
55 "$ref": "#/definitions/GetCertificateStatusEnumType"
56 },
57 "statusInfo": {
58 "$ref": "#/definitions/StatusInfoType"
59 },
60 "ocspResult": {
61 "description": "OCSPResponse class as defined in <<ref-ocpp_security_24, IETF RFC 6960>>. DER encoded (as defined in <<ref-ocpp_security_24, IETF RFC 6960>>), and then base64 encoded. MAY only be omitted when status is not Accepted.\r\n",
62 "type": "string",
63 "maxLength": 5500
64 }
65 },
66 "required": ["status"]
67}