HashiCorp Vault · JSON Structure

Vault Kv Versions Request Structure

VersionsRequest schema from HashiCorp Vault API

Type: object Properties: 1 Required: 1
DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

VersionsRequest is a JSON Structure definition published by HashiCorp Vault, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

versions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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