From 2de0dcb32134ccd000cf25c026057cba6859183c Mon Sep 17 00:00:00 2001 From: chime3 Date: Wed, 2 Oct 2024 13:09:47 -0700 Subject: [PATCH 1/2] feat: added sync data field --- social/calendar/v0.1.0/schema.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/social/calendar/v0.1.0/schema.json b/social/calendar/v0.1.0/schema.json index 54368ac..95452b4 100644 --- a/social/calendar/v0.1.0/schema.json +++ b/social/calendar/v0.1.0/schema.json @@ -60,6 +60,11 @@ "title": "Location", "description": "Geographic location of the calendar as free-form text.", "type": "string" + }, + "syncData": { + "title": "Sync Data", + "type": "string", + "description": "Data to help co-ordinating the sync of events in this calendar" } }, "required": [ From 09b227b5bd674de84276d6f810b5a8997839a7f9 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 8 Oct 2024 17:36:05 +1030 Subject: [PATCH 2/2] Fix invalid calendar schema id --- social/calendar/v0.1.0/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social/calendar/v0.1.0/schema.json b/social/calendar/v0.1.0/schema.json index 95452b4..17d5b01 100644 --- a/social/calendar/v0.1.0/schema.json +++ b/social/calendar/v0.1.0/schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://common.schemas.example.com/social/calendar/v0.1.0/schema.json", + "$id": "https://common.schemas.verida.io/social/calendar/v0.1.0/schema.json", "title": "Calendar", "titlePlural": "Calendars", "description": "Calendar information",