Representation of a list of certificates
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/publisher-api-certificates-schema.json", "title": "Certificates", "description": "Representation of a list of certificates", "type": "object", "properties": { "count": { "type": "integer", "example": 1 }, "certificates": { "type": "array", "items": { "$ref": "#/components/schemas/CertMetadata" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }