28 lines
628 B
JSON
28 lines
628 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "urn:OCPP:1.6:2019:12:UpdateFirmwareRequest",
|
|
"title": "UpdateFirmwareRequest",
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"retries": {
|
|
"type": "integer"
|
|
},
|
|
"retrieveDate": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"retryInterval": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"location",
|
|
"retrieveDate"
|
|
]
|
|
}
|