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
This commit is contained in:
gtema 2024-02-07 08:49:45 +01:00
parent 0340121042
commit 480ba29709
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ ROLE_PROPERTIES = {
"name": {
"type": "string"
},
"additionalProperties": False
}
},
"additionalProperties": False
}
}