NOMOS-GEO-Audit-Protocol / schema /source-book.schema.json
juliangauss1986's picture
Publish six-language machine-readable corpus
6259f2a verified
Raw
History Blame Contribute Delete
727 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://noblejackal.com/schemas/nomos-geo-audit-protocol-v0.9.json",
"title": "NOMOS GEO Audit Protocol machine publication",
"type": "object",
"required": [
"schemaVersion",
"book",
"statusAssertions",
"chapters",
"sources"
],
"properties": {
"schemaVersion": {
"type": "string"
},
"book": {
"type": "object",
"required": [
"title",
"language",
"version"
]
},
"statusAssertions": {
"type": "object"
},
"chapters": {
"type": "array",
"minItems": 21,
"maxItems": 21
},
"sources": {
"type": "object"
}
}
}