Extend config schema

This commit is contained in:
2023-05-09 09:34:03 +02:00
parent 09d30d0ead
commit 72f178a088
2 changed files with 28 additions and 7 deletions

View File

@@ -56,6 +56,10 @@
"description": "Path to job archive for file backend",
"type": "string"
},
"compression": {
"description": "Setup automatic compression for jobs older than number of days",
"type": "integer"
},
"retention": {
"description": "Configuration keys for retention",
"type": "object",
@@ -69,11 +73,11 @@
"move"
]
},
"time": {
"description": "Act on jobs with startTime older than time",
"age": {
"description": "Act on jobs with startTime older than age (in days)",
"type": "integer"
},
"directory": {
"location": {
"description": "The target directory for retention. Only applicable for retention move.",
"type": "string"
}