stages/copy: fix indent for schema

Re-indent sub-schema for "paths", which was mis-indented.
This commit is contained in:
Christian Kellner 2021-06-18 19:38:37 +02:00
parent 3160bfe670
commit 9470cb6e86

View file

@ -27,28 +27,28 @@ SCHEMA_2 = r"""
"required": ["paths"],
"properties": {
"paths": {
"description": "Array of items to copy",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["from", "to"],
"properties": {
"from": {
"type": "string",
"description": "The source",
"pattern": "^input:\/\/[^\/]+\/"
},
"to": {
"type": "string",
"description": "The destination",
"pattern": "^(tree|mount):\/\/[^\/]+\/"
"description": "Array of items to copy",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["from", "to"],
"properties": {
"from": {
"type": "string",
"description": "The source",
"pattern": "^input:\/\/[^\/]+\/"
},
"to": {
"type": "string",
"description": "The destination",
"pattern": "^(tree|mount):\/\/[^\/]+\/"
}
}
}
}
}
}
},
"devices": {
"type": "object",