From 4ed55a60ecaaeb008191bd1715809114eef8cc39 Mon Sep 17 00:00:00 2001 From: V02460 Date: Tue, 20 May 2025 16:54:09 +0200 Subject: [PATCH] =?UTF-8?q?[schema]=20Correct=20null=20value=20handling=20?= =?UTF-8?q?for=20the=20AS=20Registration=E2=80=99s=20`url`=20property=20(#?= =?UTF-8?q?2130)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> --- changelogs/application_service/newsfragments/2130.feature | 1 + data/api/application-service/definitions/registration.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelogs/application_service/newsfragments/2130.feature diff --git a/changelogs/application_service/newsfragments/2130.feature b/changelogs/application_service/newsfragments/2130.feature new file mode 100644 index 00000000..7761505c --- /dev/null +++ b/changelogs/application_service/newsfragments/2130.feature @@ -0,0 +1 @@ +Correct null value handling for the AS Registration's `url` property. diff --git a/data/api/application-service/definitions/registration.yaml b/data/api/application-service/definitions/registration.yaml index ce702df0..f5db31e6 100644 --- a/data/api/application-service/definitions/registration.yaml +++ b/data/api/application-service/definitions/registration.yaml @@ -19,7 +19,7 @@ properties: type: string description: A unique, user-defined ID of the application service which will never change. url: - type: string + type: ["null", "string"] description: The URL for the application service. May include a path after the domain name. Optionally set to null if no traffic is required. as_token: type: string