{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/vault/refs/heads/main/json-structure/vault-sys-enable-auth-method-request-structure.json", "name": "EnableAuthMethodRequest", "description": "EnableAuthMethodRequest schema from HashiCorp Vault API", "type": "object", "properties": { "type": { "type": "string", "description": "Type of auth method to enable. Supported types include approle, aws, azure, github, jwt, kubernetes, ldap, oidc, token, userpass.", "example": "approle" }, "description": { "type": "string", "description": "Human-friendly description of the auth method.", "example": "AppRole auth for microservices" } }, "required": [ "type" ] }