Add jsonschema test case

This commit is contained in:
Qubasa
2024-05-03 18:22:20 +02:00
parent 346707ea8d
commit 83f07816a3
4 changed files with 48 additions and 1 deletions

View File

@@ -45,6 +45,27 @@
"description": "A submodule option"
}
}
},
"destinations": {
"additionalProperties": {
"properties": {
"name": {
"default": "name",
"description": "the name of the backup job",
"type": "string"
},
"repo": {
"description": "the borgbackup repository to backup to",
"type": "string"
}
},
"required": [
"repo"
],
"type": "object"
},
"default": {},
"type": "object"
}
}
}