I notice that Literal[datetime] look like the following in the JSON:
{
"result": "<https://tno.nl/energy/data/hedgeiot/measurement/871687110003209825/bb356c53-4b7d-4054-a13b-6c11f85bbb31/10180/1784053800/result>",
"val": "\"1.746\"^^<http://www.w3.org/2001/XMLSchema#double>",
"prop": "<http://qudt.org/vocab/quantitykind/Energy>",
"em": "<https://tno.nl/energy/data/hedgeiot/meter/871687110003209825/bb356c53-4b7d-4054-a13b-6c11f85bbb31>",
"o": "<https://tno.nl/energy/data/hedgeiot/measurement/871687110003209825/bb356c53-4b7d-4054-a13b-6c11f85bbb31/10180/1784053800>",
"timestamp": "\"2026-07-14T20:30:00+0200\""
}
while Literal[float] gets a datatype, the datetime does not.
I would expect the value of timestamp to look like this: "\"2026-07-14T20:30:00+0200\"^^<http://www.w3.org/2001/XMLSchema#dateTime>".
I notice that
Literal[datetime]look like the following in the JSON:while
Literal[float]gets a datatype, the datetime does not.I would expect the value of
timestampto look like this:"\"2026-07-14T20:30:00+0200\"^^<http://www.w3.org/2001/XMLSchema#dateTime>".