Catalogue API Change: DateTimeOffset Attributes Format Change (2025-03-17)
We would like to inform you about an upcoming change to our OData and STAC APIs interfaces, effective 17 March 2025.
Starting from 17 March 2025, the format of displaying Attributes with the DateTimeOffset type will be changed to ensure uniformity with the ISO 8601 standard, where the UTC time zone should be abbreviated with Z.
Current format
OData API response
{
"@odata.type": "#OData.CSC.DateTimeOffsetAttribute",
"Name": "processingDate",
"Value": "2024-06-04T12:03:49.113620+00:00",
"ValueType": "DateTimeOffset"
}
STAC API response
"processingDate": "2024-06-20T08:14:44.000000+00:00"
New format
OData API response
{
"@odata.type": "#OData.CSC.DateTimeOffsetAttribute",
"Name": "processingDate",
"Value": "2024-06-04T12:03:49.113620Z",
"ValueType": "DateTimeOffset"
}
STAC API response
"processingDate": "2024-06-04T12:03:49.113620Z"
References
For more details, see Catalogue API Change: DateTimeOffset Attributes Format Change (2025-03-17)