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