From a7b4139e1bb5c0a6d13a876d45da1efe8491c0ea Mon Sep 17 00:00:00 2001 From: "Kai A. Hiller" Date: Tue, 8 Apr 2025 19:11:39 +0200 Subject: [PATCH 1/2] schema: Make AS URL nullable Signed-off-by: Kai A. Hiller --- data/api/application-service/definitions/registration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From f1e04b780d82e98548b0b15d54209ce81311b8eb Mon Sep 17 00:00:00 2001 From: "Kai A. Hiller" Date: Tue, 8 Apr 2025 21:28:34 +0200 Subject: [PATCH 2/2] Add newsfragment Signed-off-by: Kai A. Hiller --- changelogs/application_service/newsfragments/2130.feature | 1 + 1 file changed, 1 insertion(+) 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..c70ad088 --- /dev/null +++ b/changelogs/application_service/newsfragments/2130.feature @@ -0,0 +1 @@ +Correct null value handling for the AS Registration’s `url` property.