From 1aee29f4e76ac4b1945fcdc044910e4811a91369 Mon Sep 17 00:00:00 2001 From: Klein Petr Date: Thu, 12 Sep 2024 18:31:48 +0200 Subject: [PATCH] fix(schema): project history schema --- schema/project.yaml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/schema/project.yaml b/schema/project.yaml index fc8c53a6..1a5e8d1a 100644 --- a/schema/project.yaml +++ b/schema/project.yaml @@ -100,19 +100,21 @@ properties: time: type: string history: - type: object - properties: - title: - type: string - event_type: - type: string - description: - type: string - time: - type: string - link: - type: string - format: uri + type: array + items: + type: object + properties: + title: + type: string + event_type: + type: string + description: + type: string + time: + type: string + link: + type: string + format: uri sunset: type: boolean # LINKS ---------------------------------------------------------------------