From e17445170fb21588aaf0aa65372c81790cbd9bcf Mon Sep 17 00:00:00 2001 From: eisenschmidm Date: Mon, 26 May 2025 16:47:06 +0000 Subject: [PATCH 1/2] Correction of IBAN pattern definition --- 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 d14629af..63c3226f 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -523,7 +523,7 @@ }, "IBAN": { "type": "string", - "pattern": "[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}", + "pattern": "[A-Z]{2}[0-9]{2}[a-zA-Z0-9]{1,30}", "description": "International Bank Account Number according to ISO 13616-1:2020" }, "PaymentCard": { -- GitLab From dae37d5ca62743b9d9ab79efa17e0bd9bfb0fba9 Mon Sep 17 00:00:00 2001 From: landgrafr <932-landgrafr@users.noreply.forge.etsi.org> Date: Wed, 4 Jun 2025 11:05:41 +0000 Subject: [PATCH 2/2] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: canterburym --- 103705/schema/etsi_types.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/103705/schema/etsi_types.schema.json b/103705/schema/etsi_types.schema.json index 63c3226f..5761b54e 100644 --- a/103705/schema/etsi_types.schema.json +++ b/103705/schema/etsi_types.schema.json @@ -523,8 +523,8 @@ }, "IBAN": { "type": "string", - "pattern": "[A-Z]{2}[0-9]{2}[a-zA-Z0-9]{1,30}", - "description": "International Bank Account Number according to ISO 13616-1:2020" + "pattern": "[A-Z]{2}[0-9]{2}[A-Z0-9]{1,30}", + "description": "International Bank Account Number according to ISO 13616-1:2020, converted to upper-case letters." }, "PaymentCard": { "type": "object", -- GitLab