From 1f16c6f0df07daaee7f72922bc2e68c181fe29d9 Mon Sep 17 00:00:00 2001 From: Steffen Rhinow <53087707+steffenrhinow@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:09:54 +0100 Subject: [PATCH] Update rcp.api.v1.rootcertificates.json - Add pagination of the GetRootCertificates Add pagination of the GetRootCertificates --- .../apis/rcp/rcp.api.v1.rootcertificates.json | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/specification/apis/rcp/rcp.api.v1.rootcertificates.json b/specification/apis/rcp/rcp.api.v1.rootcertificates.json index 4b40b61..754d577 100644 --- a/specification/apis/rcp/rcp.api.v1.rootcertificates.json +++ b/specification/apis/rcp/rcp.api.v1.rootcertificates.json @@ -24,7 +24,28 @@ "name": "pkiType", "description": "Optional parameter to filter for root certificates from V2G, eMSP or OEM PKI.", "schema": { - "$ref": "../../components/parameters/pkiTypeParam.v1.json" + "$ref": "../../components/parameters/pkiTypeParam.v1.json" + } + }, + { + "in": "query", + "name": "page", + "description": "The page number to retrieve (1-based).", + "schema": { + "type": "integer", + "minimum": 1, + "default": 1 + } + }, + { + "in": "query", + "name": "pageSize", + "description": "The number of items per page.", + "schema": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "default": 10 } } ],