HashiCorp Vault · Schema

VersionsRequest

VersionsRequest schema from HashiCorp Vault API

DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

Properties

Name Type Description
versions array List of version numbers to operate on.
View JSON Schema on GitHub

JSON Schema

vault-kv-versions-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vault/refs/heads/main/json-schema/vault-kv-versions-request-schema.json",
  "title": "VersionsRequest",
  "description": "VersionsRequest schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "versions": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "List of version numbers to operate on.",
      "example": [
        1,
        2,
        3
      ]
    }
  },
  "required": [
    "versions"
  ]
}