{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportContainerPagedQueryResponse", "title": "ImportContainerPagedQueryResponse", "type": "object", "description": "Paginated response containing a list of import containers.", "required": [ "limit", "offset", "count", "total", "results" ], "properties": { "limit": { "type": "integer" }, "offset": { "type": "integer" }, "count": { "type": "integer" }, "total": { "type": "integer" }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/ImportContainer" } } } }