From 9c955db1913e8bb8f07e32d2a485d536cf6e86e0 Mon Sep 17 00:00:00 2001 From: Lars Date: Tue, 12 Aug 2025 12:50:29 +0200 Subject: [PATCH] schemas/plan_templates.json aktualisiert --- schemas/plan_templates.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/schemas/plan_templates.json b/schemas/plan_templates.json index 3e5b2b2..981e14e 100644 --- a/schemas/plan_templates.json +++ b/schemas/plan_templates.json @@ -24,8 +24,10 @@ "properties": { "name": { "type": "string" }, "target_minutes": { "type": "integer", "minimum": 0 }, - "must_keywords": { "type": "array", "items": { "type": "string" } }, - "forbid_keywords": { "type": "array", "items": { "type": "string" } }, + "must_keywords": { "type": "array", "items": { "type": "string" }, "default": [] }, + "ideal_keywords": { "type": "array", "items": { "type": "string" }, "default": [] }, + "supplement_keywords": { "type": "array", "items": { "type": "string" }, "default": [] }, + "forbid_keywords": { "type": "array", "items": { "type": "string" }, "default": [] }, "capability_targets": { "type": "object", "additionalProperties": { "type": "integer" } } } }