From 5334ce0399fe2ec6f7e4aed90189f622027d54fb Mon Sep 17 00:00:00 2001 From: Frank Fransen Date: Thu, 11 Sep 2025 10:20:02 +0000 Subject: [PATCH 1/4] Edit etsi_types.schema.json to add addresses and contract file to subscribed data types. --- 103705/schema/etsi_types.schema.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/103705/schema/etsi_types.schema.json b/103705/schema/etsi_types.schema.json index 00c95cd2..c959dd76 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -484,6 +484,13 @@ "dateOfBirth": { "$ref": "#/$defs/Date", "description": "Date of birth of the person" + }, + "residence": { + "type": "array", + "items": { + "$ref": "#/$defs/Address" + }, + "description": "Residence address of the person" } } }, @@ -504,6 +511,13 @@ "type": "string", "pattern": "[A-Z]{2}.*", "description": "Value Added Tax number, typically starting with a two letter country code according to ISO code 3166 - alpha 2 - that identifies the country of issue" + }, + "registeredAddress": { + "type": "array", + "items": { + "$ref": "#/$defs/Address" + }, + "description": "Registered address of the organisation" } } }, @@ -567,6 +581,10 @@ "natureOfContract": { "type": "string", "description": "Nature of the contract, i.e. product or service name" + }, + "documentFile": { + "$ref": "#/$defs/DocumentFile", + "description": "Document file, e.g. copy of the contract" } } }, -- GitLab From 250903bcfaa71c7137ed96bcc7eafc83483db25e Mon Sep 17 00:00:00 2001 From: Frank Fransen Date: Wed, 1 Oct 2025 18:40:45 +0000 Subject: [PATCH 2/4] Update file etsi_types.schema.json --- 103705/schema/etsi_types.schema.json | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/103705/schema/etsi_types.schema.json b/103705/schema/etsi_types.schema.json index c959dd76..6d91e0f2 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -485,12 +485,16 @@ "$ref": "#/$defs/Date", "description": "Date of birth of the person" }, - "residence": { + "addresses": { "type": "array", "items": { "$ref": "#/$defs/Address" }, - "description": "Residence address of the person" + "description": "List of one or more addresses registered for the person" + }, + "contactDetails": { + "$ref": "#/$defs/ContactDetail", + "description": "Contact details registered for the person" } } }, @@ -512,12 +516,16 @@ "pattern": "[A-Z]{2}.*", "description": "Value Added Tax number, typically starting with a two letter country code according to ISO code 3166 - alpha 2 - that identifies the country of issue" }, - "registeredAddress": { + "addresses": { "type": "array", "items": { "$ref": "#/$defs/Address" }, - "description": "Registered address of the organisation" + "description": "List of one or more addresses registered for the organisation" + }, + "contactDetails": { + "$ref": "#/$defs/ContactDetail", + "description": "Contact details registered for the person" } } }, @@ -638,6 +646,10 @@ "countryCode": { "$ref": "ts_103280_2017_07#/$defs/ISOCountryCode", "description": "Country code of the address" + }, + "typeOfAddress": { + "type": "string", + "description": "Information about the type of addresses, e.g. residence, billing, installation" } } }, -- GitLab From 270f2e5b4b9473fdf889a1d132dcd530567227bf Mon Sep 17 00:00:00 2001 From: Frank Fransen Date: Thu, 2 Oct 2025 14:25:15 +0000 Subject: [PATCH 3/4] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Steije van Schelt <239-svs@users.noreply.forge.etsi.org> --- 103705/schema/etsi_types.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/103705/schema/etsi_types.schema.json b/103705/schema/etsi_types.schema.json index 6d91e0f2..ea40f540 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -525,7 +525,7 @@ }, "contactDetails": { "$ref": "#/$defs/ContactDetail", - "description": "Contact details registered for the person" + "description": "Contact details registered for the organisation" } } }, -- GitLab From 18307a2df9c49b68977d1a51777e7af0d15e130f Mon Sep 17 00:00:00 2001 From: Frank Fransen Date: Thu, 2 Oct 2025 14:27:40 +0000 Subject: [PATCH 4/4] editorial corrections in descriptio --- 103705/schema/etsi_types.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/103705/schema/etsi_types.schema.json b/103705/schema/etsi_types.schema.json index ea40f540..78653c0e 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -649,7 +649,7 @@ }, "typeOfAddress": { "type": "string", - "description": "Information about the type of addresses, e.g. residence, billing, installation" + "description": "Information about the type of address, e.g. residence, billing, installation" } } }, -- GitLab