From 6e6377ed51b5046f8c5209abad4fba2b9c6a01ef Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Wed, 1 Nov 2023 15:27:06 +0100 Subject: [PATCH] actions.schema - add reidentify.onfail property Sets an action to take in case of failure. --- actions.schema.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/actions.schema.json b/actions.schema.json index 3bba7e1..4c639c9 100644 --- a/actions.schema.json +++ b/actions.schema.json @@ -86,9 +86,21 @@ }, "reidentify": { "type": "object", + "required": [ + "reasoning" + ], "properties": { "reasoning": { "type": "string" + }, + "onfail": { + "type": "string", + "enum": [ + "convert", + "extract", + "manual", + "ignore" + ] } } },