From 32ebe19cb96d792de4674c945624c9a646c31c15 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Thu, 2 Nov 2023 09:20:36 +0100 Subject: [PATCH] actions.schema - add rename action type --- actions.schema.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/actions.schema.json b/actions.schema.json index 4c639c9..163c924 100644 --- a/actions.schema.json +++ b/actions.schema.json @@ -19,8 +19,9 @@ "convert", "extract", "manual", - "ignore", - "reidentify" + "rename", + "reidentify", + "ignore" ] }, "convert": { @@ -84,6 +85,14 @@ } } }, + "rename": { + "type": "object", + "properties": { + "new_name": { + "type": "string" + } + } + }, "reidentify": { "type": "object", "required": [ @@ -99,6 +108,7 @@ "convert", "extract", "manual", + "rename", "ignore" ] }