From ae9456b4447f07304fc7e26f18fd4e3fd5982f28 Mon Sep 17 00:00:00 2001 From: Daniel D'Avella Date: Thu, 14 Nov 2024 12:05:23 -0500 Subject: [PATCH] Add "strategy" and "provisional" metadata to changeset --- codetf.schema.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/codetf.schema.json b/codetf.schema.json index cc67362..41b7a35 100644 --- a/codetf.schema.json +++ b/codetf.schema.json @@ -171,6 +171,15 @@ "ai": { "description": "Metadata about AI tool used to generate the fix", "$ref": "#/definitions/ai" + }, + "strategy": { + "type": "string", + "description": "The strategy used to generate the fix", + "enum": ["ai", "hybrid", "deterministic"] + }, + "provisional": { + "type": "boolean", + "description": "Indicates that the fix is provisional and may need further review" } }, "required": ["path", "diff", "changes"]