From b6980b01b03bd7ec89370c9ce9e3c52c0798d259 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 29 Mar 2023 22:29:48 +0200 Subject: [PATCH] schema: fix schema for timeOffsets commit 36bb632767af9022bd2ede974d2cadb6c318be8c introduced the issue. Signed-off-by: Giuseppe Scrivano --- schema/config-linux.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/schema/config-linux.json b/schema/config-linux.json index d10810df4..75ff114e4 100644 --- a/schema/config-linux.json +++ b/schema/config-linux.json @@ -283,8 +283,14 @@ }, "timeOffsets": { "type": "object", - "additionalProperties": { - "$ref": "defs-linux.json#/definitions/TimeOffsets" + "type": "object", + "properties": { + "boottime": { + "$ref": "defs-linux.json#/definitions/TimeOffsets" + }, + "monotonic": { + "$ref": "defs-linux.json#/definitions/TimeOffsets" + } } } }