Paginated list of photos.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PhotoList", "title": "PhotoList", "type": "object", "description": "Paginated list of photos.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Photo" } }, "paging": { "$ref": "#/components/schemas/Paging" } } }