diff --git a/fileformats.schema.json b/fileformats.schema.json index 56b5f40..d15cad4 100644 --- a/fileformats.schema.json +++ b/fileformats.schema.json @@ -31,6 +31,16 @@ "extract" ] }, + { + "properties": { + "action": { + "const": "replace" + } + }, + "required": [ + "replace" + ] + }, { "properties": { "action": { @@ -84,6 +94,7 @@ "enum": [ "convert", "extract", + "replace", "manual", "rename", "ignore", @@ -140,6 +151,17 @@ } } }, + "replace": { + "type": "object", + "required": [ + "template" + ], + "properties": { + "template": { + "type": "string" + } + } + }, "manual": { "type": "object", "properties": { @@ -183,6 +205,7 @@ "enum": [ "convert", "extract", + "replace", "manual", "rename", "ignore"