HashiCorp Vault · JSON Structure

Vault Sys Enable Mount Request Structure

EnableMountRequest schema from HashiCorp Vault API

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

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

Properties

type description options

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-sys-enable-mount-request-structure.json",
  "name": "EnableMountRequest",
  "description": "EnableMountRequest schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of secrets engine to mount.",
      "example": "kv"
    },
    "description": {
      "type": "string",
      "description": "Human-friendly description.",
      "example": "Application secrets"
    },
    "options": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "type"
  ]
}