From 537dce11135f66cdbade9064d1d55004106f1764 Mon Sep 17 00:00:00 2001 From: Anthony Williams Date: Wed, 18 Dec 2024 14:12:44 -0800 Subject: [PATCH] Sync dca_config.schema.json with prod Signed-off-by: Anthony Williams --- schemas/dca_config.schema.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/schemas/dca_config.schema.json b/schemas/dca_config.schema.json index fded992..25f82b5 100644 --- a/schemas/dca_config.schema.json +++ b/schemas/dca_config.schema.json @@ -135,12 +135,19 @@ "model_validate": { "description": "Parameteres to pass to Schematic model validate", "type": "object", - "required": [ "restrict_rules" ], + "required": [ + "restrict_rules", + "enable_cross_manifest_validation" + ], "additionalProperties": false, "properties": { "restrict_rules": { "description": "Schematic model validate option", "type": "boolean" + }, + "enable_cross_manifest_validation": { + "description": "Use cross manifest validation", + "type": "boolean" } } }, @@ -152,7 +159,8 @@ "manifest_record_type", "hide_blanks", "annotation_keys", - "table_column_names" + "table_column_names", + "file_annotations_upload" ], "additionalProperties": false, "properties": { @@ -179,8 +187,12 @@ "hide_blanks": { "description": "Schematic model submit option", "type": "boolean" + }, + "file_annotations_upload": { + "description": "Choose to add annotations to files during upload", + "type": "boolean" } - } + } } } }