Azure Key Vault · Schema

CertificateListResult

The certificate list result.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
value array A list of certificates.
nextLink string The URL to get the next set of certificates.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-certificatelistresult-schema.json Raw ↑
{
  "$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",
      "items": {
        "$ref": "#/components/schemas/CertificateItem"
      },
      "description": "A list of certificates.",
      "readOnly": true,
      "example": []
    },
    "nextLink": {
      "type": "string",
      "description": "The URL to get the next set of certificates.",
      "readOnly": true,
      "example": "example_value"
    }
  }
}