ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
30 lines (29 loc) • 642 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "GetDiagnosticsRequest",
"type": "object",
"properties": {
"location": {
"type": "string",
"format": "uri"
},
"retries": {
"type": "integer"
},
"retryInterval": {
"type": "integer"
},
"startTime": {
"type": "string",
"format": "date-time"
},
"stopTime": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false,
"required": [
"location"
]
}