cuddle/schemas/base.json

26 lines
600 B
JSON
Raw Normal View History

2022-08-09 13:23:30 +02:00
{
"$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"
}