{ "$schema": "https://json-schema.org/draft-07.schema#", "type": "object", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "artist": { "type": "string" }, "author": { "type": "string" }, "cover": { "type": "string" }, "chapters": { "type": "object", "patternProperties": { "^[0-9]+$": { "type": "object", "properties": { "title": { "type": "string" }, "volume": { "type": "integer" }, "groups": { "type": "array", "items": { "type": "object", "patternProperties": { ".+$": { "type": ["string", "array"], "items": { "type": "string" } } } } }, "last_updated": { "type": "integer" } } } }, "required": ["title", "groups"] } }, "required": ["title", "chapters"] }