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": {
"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" }
}
}
}
}