HashiCorp Vault · Schema

AuthMethodsResponse

AuthMethodsResponse schema from HashiCorp Vault API

DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

Properties

Name Type Description
data object Map of mount path to auth method configuration.
View JSON Schema on GitHub

JSON Schema

vault-sys-auth-methods-response-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-sys-auth-methods-response-schema.json",
  "title": "AuthMethodsResponse",
  "description": "AuthMethodsResponse schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Map of mount path to auth method configuration.",
      "additionalProperties": {
        "$ref": "#/components/schemas/AuthMethodConfig"
      }
    }
  }
}