From e0a510afadaa2c62b2834020046bcfa21b1871a4 Mon Sep 17 00:00:00 2001 From: Julia Lange Date: Thu, 8 May 2025 14:27:17 -0700 Subject: [PATCH] Lexicons, remove invalid concrete schema --- lexicons/my/spoor/log/activity.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lexicons/my/spoor/log/activity.json b/lexicons/my/spoor/log/activity.json index f3035fb..adb3a1e 100644 --- a/lexicons/my/spoor/log/activity.json +++ b/lexicons/my/spoor/log/activity.json @@ -15,7 +15,7 @@ "progress": { "type": "union", "refs": [ - "my.spoor.log.activity#indexProgress" + "#progressIndex" ] }, "performedAt": { @@ -31,9 +31,13 @@ } } }, - "indexProgress": { - "type": "integer", - "description": "The index of the content consumed. Content must be indexable" + "progressIndex": { + "type": "object", + "description": "The index of the content consumed. Content must be indexable", + "required": [ "index" ], + "properties": { + "index": { "type": "integer" } + } } } }