Lexicons, remove invalid concrete schema

This commit is contained in:
Julia Lange 2025-05-08 14:27:17 -07:00
parent fb996f9654
commit e0a510afad
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ

View file

@ -15,7 +15,7 @@
"progress": { "progress": {
"type": "union", "type": "union",
"refs": [ "refs": [
"my.spoor.log.activity#indexProgress" "#progressIndex"
] ]
}, },
"performedAt": { "performedAt": {
@ -31,9 +31,13 @@
} }
} }
}, },
"indexProgress": { "progressIndex": {
"type": "integer", "type": "object",
"description": "The index of the content consumed. Content must be indexable" "description": "The index of the content consumed. Content must be indexable",
"required": [ "index" ],
"properties": {
"index": { "type": "integer" }
}
} }
} }
} }