feat: fix additional properties
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-16 16:57:10 +01:00
parent 8fe00b22c5
commit 6aa90d22ea

View File

@@ -1,6 +1,6 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false, "additionalProperties": true,
"properties": { "properties": {
"base": { "base": {
"title": "Base url from which to base current cuddle plan on", "title": "Base url from which to base current cuddle plan on",
@@ -27,6 +27,9 @@
}, },
{ {
"type": "object" "type": "object"
},
{
"type": "array"
} }
] ]
} }