From 480ba297095490b43d89f4fe93603b49e0d6f430 Mon Sep 17 00:00:00 2001 From: gtema Date: Wed, 7 Feb 2024 08:49:45 +0100 Subject: [PATCH] Fix federation mapping role jsonschema additionalProperties attribute must be located on the level of "type" and not inside "properties" (https://json-schema.org/understanding-json-schema/reference/object#additional-properties). Sadly this is not violating schema validation, but is wrong and hurts any reasonable processing of the schema. Change-Id: Ib537f1dd33dd3f3dc8909873dffc37980d04b4db --- keystone/federation/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keystone/federation/utils.py b/keystone/federation/utils.py index ee395c367a..dc983a6e9d 100644 --- a/keystone/federation/utils.py +++ b/keystone/federation/utils.py @@ -50,8 +50,8 @@ ROLE_PROPERTIES = { "name": { "type": "string" }, - "additionalProperties": False - } + }, + "additionalProperties": False } }