{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "page": { "type": "integer", "minimum": 0, "maximum": 12 }, "id": { "type": "integer", "minimum": 0, "maximum": 254 }, "obj": { "type": "string" } }, "required": [ "id" ] } ] } }