Skip to content

"timestamp" field in OCPP 2.0.1 messages do not comply with the specified formatting #152

Open
@Wolfy7

Description

@Wolfy7

Description

The OCPP 2.0.1 specification defines the format for dateTime datatypes as folowed:

Image

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

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions