{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemCollection", "title": "ItemCollection", "type": "object", "properties": { "total": { "type": "integer" }, "start": { "type": "integer" }, "num": { "type": "integer" }, "nextStart": { "type": "integer" }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Item" } } } }