Commit 2cea0bf2 authored by Jérome Perrin's avatar Jérome Perrin

software/erp5: fix schemas allowing additional properties

In 55449aca (software/erp5: describe the allowed formats for family
and frontend names, 2024-01-01) we changed to a stricter definition of
zope and frontends partitions names, but because these objects allowed
additional properties, a partition not matching the pattern would be
anyway be accepted.
parent a790827b
...@@ -213,6 +213,7 @@ ...@@ -213,6 +213,7 @@
"type": "object" "type": "object"
} }
}, },
"additionalProperties": false,
"type": "object" "type": "object"
}, },
"zope-partition-dict": { "zope-partition-dict": {
...@@ -285,6 +286,7 @@ ...@@ -285,6 +286,7 @@
"type": "object" "type": "object"
} }
}, },
"additionalProperties": false,
"type": "object" "type": "object"
}, },
"kumofs": { "kumofs": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment