From 6532b6f9e703ba6e1e2f62db14b4ae0fea9684af Mon Sep 17 00:00:00 2001 From: Sebastian Iancu Date: Fri, 24 Nov 2023 22:58:10 +0100 Subject: [PATCH] adding DvIntervalOfDate type (from #16 #99 SPECITS-70, relates to SPECITS-73) --- .../schemas/data_types/DvIntervalOfDate.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 specifications/schemas/data_types/DvIntervalOfDate.yaml diff --git a/specifications/schemas/data_types/DvIntervalOfDate.yaml b/specifications/schemas/data_types/DvIntervalOfDate.yaml new file mode 100644 index 00000000..535ad0a4 --- /dev/null +++ b/specifications/schemas/data_types/DvIntervalOfDate.yaml @@ -0,0 +1,13 @@ +title: DV_INTERVAL_of_DATE +type: object +allOf: + - $ref: ../data_types/DvInterval.yaml +properties: + _type: + type: string + default: DV_INTERVAL + lower: + $ref: ./UMDvDate.yaml + upper: + $ref: ./UMDvDate.yaml +x-discriminator-value: DV_INTERVAL_of_DATE