HashiCorp Vault · JSON Structure

Vault Sys Mount Config Structure

MountConfig schema from HashiCorp Vault API

Type: object Properties: 4
DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

MountConfig is a JSON Structure definition published by HashiCorp Vault, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type description accessor 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-mount-config-structure.json",
  "name": "MountConfig",
  "description": "MountConfig schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Secrets engine type.",
      "example": "kv"
    },
    "description": {
      "type": "string",
      "description": "Description of the mount.",
      "example": "Key-Value store"
    },
    "accessor": {
      "type": "string",
      "description": "Mount accessor.",
      "example": "kv_abc123"
    },
    "options": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}