Open
Description
Description
The OCPP 2.0.1 specification defines the format for dateTime
datatypes as folowed:
If you create a StatusNotificationRequest
with chrono::Utc::now()
StatusNotificationRequest {
timestamp: chrono::Utc::now(),
evse_id: 1,
connector_id: 1,
connector_status: ConnectorStatusEnumType::Available,
}
the json output will look like:
{\"Call\":[2,\"mL0tHk5z9CwvfCpX1HKTKYxEGyeUlYxaEejR\",\"StatusNotification\",{\"timestamp\":\"2025-02-25T20:53:10.093684808Z\",\"connectorStatus\":\"Available\",\"evseId\":1,\"connectorId\":1}]}
chrono
stores the DateTime<Utc>
with high precision (nanoseconds) so:
chrono::Utc::now()
would result in 2025-02-25 20:53:10.093676623 UTC
Solution
Probably a solution could be to use #[serde(with = "ts_milliseconds")]
for timestamp
field in OCPP 2.0.1 messages.
Metadata
Metadata
Assignees
Labels
No labels