From 6ec106e5f6f6ad6a08bcf05c3740a8893c6bd2d3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Feb 2026 22:39:04 +0000 Subject: [PATCH 1/2] Initial plan From 6a2383343fe249323a4af7e0d63d32337111c017 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Feb 2026 22:57:30 +0000 Subject: [PATCH 2/2] Add missing level property to entity cache schema Co-authored-by: JerryNixon <1749983+JerryNixon@users.noreply.github.com> --- schemas/dab.draft.schema.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/schemas/dab.draft.schema.json b/schemas/dab.draft.schema.json index 920c0a4da6..fcdde13570 100644 --- a/schemas/dab.draft.schema.json +++ b/schemas/dab.draft.schema.json @@ -1119,6 +1119,12 @@ "type": "integer", "description": "Time to live in seconds", "default": 5 + }, + "level": { + "type": "string", + "description": "Cache level (L1 or L1L2)", + "enum": [ "L1", "L1L2", null ], + "default": "L1L2" } } },