Collection of CMS media files
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MediaCollection", "title": "MediaCollection", "type": "object", "description": "Collection of CMS media files", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/MediaFile" } }, "currentPageUrl": { "type": "string", "format": "uri" }, "nextPageUrl": { "type": "string", "format": "uri" }, "totalCount": { "type": "integer" } } }