Azure Key Vault · Schema

KeyListResult

The key list result.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

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

JSON Schema

microsoft-azure-key-vault-keylistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyListResult",
  "title": "KeyListResult",
  "type": "object",
  "description": "The key list result.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/KeyItem"
      },
      "description": "A list of keys.",
      "readOnly": true,
      "example": []
    },
    "nextLink": {
      "type": "string",
      "description": "The URL to get the next set of keys.",
      "readOnly": true,
      "example": "example_value"
    }
  }
}