@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
34 lines (33 loc) • 694 B
JSON
{
"$id": "TariffSchema",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"currency": {
"type": "string",
"minLength": 3,
"maxLength": 3
},
"pricePerKwh": {
"type": "number"
},
"pricePerMin": {
"type": "number"
},
"pricePerSession": {
"type": "number"
},
"paymentFee": {
"type": "number"
},
"authorizationAmount": {
"type": "number"
},
"taxRate": {
"type": "number"
}
},
"required": ["currency", "pricePerKwh"]
}