The certificate list result.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CertificateListResult", "title": "CertificateListResult", "type": "object", "description": "The certificate list result.", "properties": { "value": { "type": "array", "readOnly": true, "items": { "type": "object", "properties": { "id": { "type": "string" }, "attributes": { "$ref": "#/components/schemas/CertificateAttributes" }, "tags": { "type": "object", "additionalProperties": { "type": "string" } }, "x5t": { "type": "string", "description": "Thumbprint of the certificate." }, "subject": { "type": "string" } } }, "description": "A list of certificates.", "example": [] }, "nextLink": { "type": "string", "readOnly": true, "description": "The URL to get the next set of certificates.", "example": "example_value" } } }