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