From 84b869ae41d7048b63915a69cc0e500bd3d619f3 Mon Sep 17 00:00:00 2001 From: Martin Szinte Date: Thu, 30 Nov 2023 10:49:38 +0100 Subject: [PATCH] Update metadata.yaml Attempt to fix the type of AverageCalibrationError and MaximalCalibrationError, leaving empty the number of maxItems as it is possible to have as many calibration as desired --- src/schema/objects/metadata.yaml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/schema/objects/metadata.yaml b/src/schema/objects/metadata.yaml index c182281dca..f1f167ff50 100644 --- a/src/schema/objects/metadata.yaml +++ b/src/schema/objects/metadata.yaml @@ -208,7 +208,13 @@ AverageCalibrationError: display_name: Average Calibration Error description: | Average calibration error in visual degree. - type: array of arrays + anyOf: + - type: array + items: + type: array + minItems: 1 + items: + type: number unit: degree B0FieldIdentifier: name: B0FieldIdentifier @@ -2075,7 +2081,14 @@ MaximalCalibrationError: display_name: Maximal Calibration Error description: | Maximal calibration error in degree. - type: array of arrays + anyOf: + - type: array + items: + type: array + minItems: 1 + items: + type: number + unit: degree unit: degree MeasurementToolMetadata: name: MeasurementToolMetadata