From f3a390f697efca951f066a4b6448b5707a20ef3b Mon Sep 17 00:00:00 2001
From: commeau <1379-commeau@users.noreply.forge.etsi.org>
Date: Tue, 20 May 2025 15:38:18 -0500
Subject: [PATCH 1/2] Add Supported LD Workflow endpoints to XML schemas
---
103120/schema/xsd/ts_103120_Config.xsd | 12 ++++++++++++
103120/schema/xsd/ts_103120_Core.xsd | 1 +
2 files changed, 13 insertions(+)
diff --git a/103120/schema/xsd/ts_103120_Config.xsd b/103120/schema/xsd/ts_103120_Config.xsd
index ea81df33..54f5c10c 100644
--- a/103120/schema/xsd/ts_103120_Config.xsd
+++ b/103120/schema/xsd/ts_103120_Config.xsd
@@ -62,4 +62,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/103120/schema/xsd/ts_103120_Core.xsd b/103120/schema/xsd/ts_103120_Core.xsd
index 36bfdc8e..2799dea8 100644
--- a/103120/schema/xsd/ts_103120_Core.xsd
+++ b/103120/schema/xsd/ts_103120_Core.xsd
@@ -174,6 +174,7 @@
+
--
GitLab
From 4bc06d53ec4ba1187dd5bb11c5c1db0e0dcaa6cb Mon Sep 17 00:00:00 2001
From: commeau <1379-commeau@users.noreply.forge.etsi.org>
Date: Tue, 20 May 2025 15:55:03 -0500
Subject: [PATCH 2/2] Add Supported LD Workflow endpoints to JSON schemas
---
.../schema/json/ts_103120_Config.schema.json | 32 +++++++++++++++++++
103120/schema/json/ts_103120_Core.schema.json | 3 ++
2 files changed, 35 insertions(+)
diff --git a/103120/schema/json/ts_103120_Config.schema.json b/103120/schema/json/ts_103120_Config.schema.json
index 36cd7743..925e2641 100644
--- a/103120/schema/json/ts_103120_Config.schema.json
+++ b/103120/schema/json/ts_103120_Config.schema.json
@@ -161,6 +161,38 @@
"config:URL"
],
"additionalProperties": false
+ },
+ "SupportedLDWorkflowEndpoints": {
+ "type": "object",
+ "properties": {
+ "config:SupportedLDWorkflowEndpoint": {
+ "type": "array",
+ "items": {
+ "$ref": "#/$defs/SupportedLDWorkflowEndpoint"
+ }
+ }
+ },
+ "required": [],
+ "additionalProperties": false
+ },
+ "SupportedLDWorkflowEndpoint": {
+ "type": "object",
+ "properties": {
+ "config:LDWorkflowEndpoint": {
+ "$ref": "ts_103120_Common_2016_02#/$defs/DictionaryEntry"
+ },
+ "config:Guidance": {
+ "$ref": "ts_103280_2017_07#/$defs/LongString"
+ },
+ "config:URL": {
+ "$ref": "ts_103280_2017_07#/$defs/LongString"
+ }
+ },
+ "required": [
+ "config:LDWorkflowEndpoint",
+ "config:URL"
+ ],
+ "additionalProperties": false
}
}
}
diff --git a/103120/schema/json/ts_103120_Core.schema.json b/103120/schema/json/ts_103120_Core.schema.json
index aa321a61..0b8cc21e 100644
--- a/103120/schema/json/ts_103120_Core.schema.json
+++ b/103120/schema/json/ts_103120_Core.schema.json
@@ -599,6 +599,9 @@
},
"SupportedLPWorkflowEndpoints": {
"$ref": "ts_103120_Config_2024_06#/$defs/SupportedLPWorkflowEndpoints"
+ },
+ "SupportedLDWorkflowEndpoints": {
+ "$ref": "ts_103120_Config_2024_06#/$defs/SupportedLDWorkflowEndpoints"
}
},
"required": [
--
GitLab