stages/copy: fix indent for schema
Re-indent sub-schema for "paths", which was mis-indented.
This commit is contained in:
parent
3160bfe670
commit
9470cb6e86
1 changed files with 18 additions and 18 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue