From a1aeb7e79fa6c0d7fb36dd947d900b9ee634bde0 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 6 Apr 2026 19:23:11 +0100 Subject: [PATCH] Association times are now just plain strings, as the date cannot be determined from the association data alone - as querying by time is not required, the expected type will be a string. --- .../darwin-data/darwin-association.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/schemas/data-ingress/darwin-data/darwin-association.json b/schemas/data-ingress/darwin-data/darwin-association.json index a0d4ace..e221ee3 100644 --- a/schemas/data-ingress/darwin-data/darwin-association.json +++ b/schemas/data-ingress/darwin-data/darwin-association.json @@ -73,11 +73,11 @@ "description": "Timings that apply to the main RID", "type": "object", "properties": { - "wta": { "type": "string", "format": "date-time" }, - "wtd": { "type": "string", "format": "date-time" }, - "wtp": { "type": "string", "format": "date-time" }, - "pta": { "type": "string", "format": "date-time" }, - "ptd": { "type": "string", "format": "date-time" } + "wta": { "type": "string" }, + "wtd": { "type": "string" }, + "wtp": { "type": "string" }, + "pta": { "type": "string" }, + "ptd": { "type": "string" } } }, "at": { @@ -85,11 +85,11 @@ "description": "Timings that apply to the associated RID", "type": "object", "properties": { - "wta": { "type": "string", "format": "date-time" }, - "wtd": { "type": "string", "format": "date-time" }, - "wtp": { "type": "string", "format": "date-time" }, - "pta": { "type": "string", "format": "date-time" }, - "ptd": { "type": "string", "format": "date-time" } + "wta": { "type": "string" }, + "wtd": { "type": "string" }, + "wtp": { "type": "string" }, + "pta": { "type": "string" }, + "ptd": { "type": "string" } } }, "can": {