Azure Key Vault · Schema

SecretListResult

The secret list result.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

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

JSON Schema

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