cuddle/schemas/base.json
2022-08-09 13:26:41 +02:00

26 lines
599 B
JSON

{
"$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"
}