Added base files

This commit is contained in:
2022-08-09 13:23:30 +02:00
commit 94f814dd11
9 changed files with 67 additions and 0 deletions

25
schemas/base.json Normal file
View File

@@ -0,0 +1,25 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"base": {
"title": "Base url from which to base current cuddle plan on",
"description": "Base url from which to construct current cuddle plan, is recursive",
"oneOf": [
{
"type": "string",
"title": "The url of the parameter"
},
{
"type": "boolean",
"title": "Whether it is enabled or not",
}
]
}
},
"required": [
"base"
],
"type": "object",
"title": "Cuddle base schema"
}