{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BulkExportDTODesktopLayoutBulkExportDTO", "title": "BulkExportDTODesktopLayoutBulkExportDTO", "type": "object", "description": "Bulk export Dto", "example": { "totalResources": 100, "pageNumber": 0, "pageSize": 50, "rel": "last", "resources": [] }, "properties": { "totalResources": { "type": "integer", "format": "int32", "description": "Total number of items.", "example": 100 }, "pageNumber": { "type": "integer", "format": "int32", "description": "Current page number.", "example": 0 }, "pageSize": { "type": "integer", "format": "int32", "description": "Page size for current data set.", "example": 50 }, "rel": { "type": "string", "description": "Indicates whether more pages exist. When 'next' there are more pages available, otherwise 'last'.", "example": "last" }, "resources": { "type": "array", "description": "Indicate the page resources", "items": { "$ref": "#/components/schemas/DesktopLayoutBulkExportDTO" } } } }