From 60c5949c23cc6eb66f88d6d4d9b118ee43fde78e Mon Sep 17 00:00:00 2001 From: Tony Fernandez Date: Mon, 28 Oct 2024 09:51:08 -0400 Subject: [PATCH] adjusted to accept integers and strings --- borgmatic/config/schema.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/borgmatic/config/schema.yaml b/borgmatic/config/schema.yaml index b00641f0..72e7e1f3 100644 --- a/borgmatic/config/schema.yaml +++ b/borgmatic/config/schema.yaml @@ -1646,25 +1646,25 @@ properties: type: object properties: value: - type: string + type: ["integer", "string"] description: | - The string to set the item value to on start. + The value to set the item to on start. example: STARTED finish: type: object properties: value: - type: string + type: ["integer", "string"] description: | - The string to set the item value to on finish. + The value to set the item to on finish. example: FINISH fail: type: object properties: value: - type: string + type: ["integer", "string"] description: | - The string to set the item value to on fail. + The value to set the item to on fail. example: ERROR states: type: array