HashiCorp Vault · JSON Structure

Vault Sys Policies List Response Structure

PoliciesListResponse schema from HashiCorp Vault API

Type: object Properties: 1
DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

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

Properties

data

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-policies-list-response-structure.json",
  "name": "PoliciesListResponse",
  "description": "PoliciesListResponse schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "policies": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "List of policy names.",
          "example": [
            "default",
            "root",
            "dev-policy"
          ]
        }
      }
    }
  }
}