From e50ce294f7e744524097a64fe6deb2c1c2e17b9d Mon Sep 17 00:00:00 2001 From: Luke Mewburn Date: Tue, 26 Aug 2025 12:25:57 +1000 Subject: [PATCH 1/4] TS_103_280.xsd: fix IPv4 regexes --- 103280/TS_103_280.xsd | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/103280/TS_103_280.xsd b/103280/TS_103_280.xsd index 2b301c6e..c70a04dc 100644 --- a/103280/TS_103_280.xsd +++ b/103280/TS_103_280.xsd @@ -62,12 +62,14 @@ - + - + -- GitLab From 9c100888d607b76f24dc5c8f9d288ec9ed11cb29 Mon Sep 17 00:00:00 2001 From: Luke Mewburn Date: Tue, 26 Aug 2025 12:30:58 +1000 Subject: [PATCH 2/4] TS_103_280.xsd: remove newlines in regexes --- 103280/TS_103_280.xsd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/103280/TS_103_280.xsd b/103280/TS_103_280.xsd index c70a04dc..54faddc4 100644 --- a/103280/TS_103_280.xsd +++ b/103280/TS_103_280.xsd @@ -62,14 +62,12 @@ - + - + -- GitLab From 940f103289274179bda6d351aa8bdaf2f5398735 Mon Sep 17 00:00:00 2001 From: Luke Mewburn Date: Tue, 26 Aug 2025 12:40:02 +1000 Subject: [PATCH 3/4] TS_103_280.schema.json: fix IPv4 regexes --- 103280/TS_103_280.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/103280/TS_103_280.schema.json b/103280/TS_103_280.schema.json index 0254a084..341de6aa 100644 --- a/103280/TS_103_280.schema.json +++ b/103280/TS_103_280.schema.json @@ -52,11 +52,11 @@ }, "IPv4Address": { "type": "string", - "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])$" + "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$" }, "IPv4CIDR": { "type": "string", - "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])/([1-2]?[0-9]|3[0-2])$" + "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])/([1-2]?[0-9]|3[0-2])$" }, "IPv6Address": { "type": "string", -- GitLab From 0ad2bfe36ef79ea8efe8f450a2b6a07ffdff0a81 Mon Sep 17 00:00:00 2001 From: Luke Mewburn Date: Tue, 26 Aug 2025 12:41:49 +1000 Subject: [PATCH 4/4] TS_103_280.schema.json: IPv4: fix escapes --- 103280/TS_103_280.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/103280/TS_103_280.schema.json b/103280/TS_103_280.schema.json index 341de6aa..66514544 100644 --- a/103280/TS_103_280.schema.json +++ b/103280/TS_103_280.schema.json @@ -52,11 +52,11 @@ }, "IPv4Address": { "type": "string", - "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$" + "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])$" }, "IPv4CIDR": { "type": "string", - "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])/([1-2]?[0-9]|3[0-2])$" + "pattern": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])/([1-2]?[0-9]|3[0-2])$" }, "IPv6Address": { "type": "string", -- GitLab