diff --git a/specification/components/responses/getRootCertificatesRes.v1.json b/specification/components/responses/getRootCertificatesRes.v1.json index 14ad37f..7e666d5 100644 --- a/specification/components/responses/getRootCertificatesRes.v1.json +++ b/specification/components/responses/getRootCertificatesRes.v1.json @@ -8,7 +8,33 @@ "items": { "$ref": "../schemas/rootCertificate.v1.json" } + }, + , + "pagination": { + "type": "object", + "description": "Pagination details for the response.", + "properties": { + "page": { + "type": "integer", + "description": "The current page number." + }, + "pageSize": { + "type": "integer", + "description": "The number of items per page." + }, + "totalPages": { + "type": "integer", + "description": "The total number of pages." + }, + "totalItems": { + "type": "integer", + "description": "The total number of items." + } + }, + "required": ["page", "pageSize", "totalPages", "totalItems"] } + }, + "required": ["rootCertificateCollection", "pagination"] } -} \ No newline at end of file +}