HashiCorp Vault · JSON Structure

Vault Sys Renew Lease Request Structure

RenewLeaseRequest schema from HashiCorp Vault API

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

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

Properties

lease_id increment

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-renew-lease-request-structure.json",
  "name": "RenewLeaseRequest",
  "description": "RenewLeaseRequest schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "lease_id": {
      "type": "string",
      "description": "Unique identifier of the lease to renew.",
      "example": "aws/creds/my-role/abc123def456"
    },
    "increment": {
      "type": "int32",
      "description": "Requested renewal duration in seconds. Vault may return a shorter duration based on policy limits.",
      "example": 3600
    }
  },
  "required": [
    "lease_id"
  ]
}