diff --git a/docs/proposals/koordlet/20231227-koordlet-resctrl-qos-enhance.md b/docs/proposals/koordlet/20231227-koordlet-resctrl-qos-enhance.md index 8bf75f9a7..1e6982f13 100644 --- a/docs/proposals/koordlet/20231227-koordlet-resctrl-qos-enhance.md +++ b/docs/proposals/koordlet/20231227-koordlet-resctrl-qos-enhance.md @@ -141,26 +141,22 @@ Below is the example value of the annotation. schemata defines all caches' confi "schemata": { "range": [20,80], }, - "schemataPerCache": { + "schemataPerCache": [ { "cacheid" : 0, - "schemata": { - "range": [20,50], - } + "range": [20,50] }, { "cacheid" : 1, - "schemata": { - "range": [20,60], - } + "range": [20,60] }, - }, + ], }, "MB": { "schemata": { "percent": 20, }, - "schemataPerCache": { + "schemataPerCache": [ { "cacheid": 0, "percent": 20 @@ -169,7 +165,7 @@ Below is the example value of the annotation. schemata defines all caches' confi "cacheid": 1, "percent": 40 }, - }, + ], } } ```