{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CollectionsWithOwnedItems", "type": "object", "properties": { "collections": { "type": "array", "items": { "$ref": "#/components/schemas/CollectionWithOwnedItems" } }, "continuation": { "type": "string", "description": "Continuation token to paginate result" } }, "required": [ "collections" ] }