CyberArk · Schema

PrivilegedAccount

A privileged account stored in the CyberArk Vault (PAM Self-Hosted or Privilege Cloud).

AuthenticationCloud SecurityConjurCredential VaultDevOps SecretsEndpoint Privilege ManagementIdentity SecurityMachine IdentityMFAOpenAPIPAMPrivileged AccessPrivileged Access ManagementSecrets ManagementSession ManagementSSOVaultZero Trust

Properties

Name Type Description
id string
name string Account display name.
address string Hostname, FQDN, or IP of the target system.
userName string
platformId string Platform configuration controlling rotation policy.
safeName string
secretType string
secretManagement object
remoteMachinesAccess object
View JSON Schema on GitHub

JSON Schema

cyberark-privileged-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cyberark/refs/heads/main/json-schema/cyberark-privileged-account-schema.json",
  "title": "PrivilegedAccount",
  "description": "A privileged account stored in the CyberArk Vault (PAM Self-Hosted or Privilege Cloud).",
  "type": "object",
  "required": ["name", "platformId", "safeName"],
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string", "description": "Account display name." },
    "address": { "type": "string", "description": "Hostname, FQDN, or IP of the target system." },
    "userName": { "type": "string" },
    "platformId": { "type": "string", "description": "Platform configuration controlling rotation policy." },
    "safeName": { "type": "string" },
    "secretType": {
      "type": "string",
      "enum": ["password", "key", "certificate"]
    },
    "secretManagement": {
      "type": "object",
      "properties": {
        "automaticManagementEnabled": { "type": "boolean" },
        "manualManagementReason": { "type": "string" },
        "lastModifiedTime": { "type": "string", "format": "date-time" }
      }
    },
    "remoteMachinesAccess": {
      "type": "object",
      "properties": {
        "remoteMachines": { "type": "string" },
        "accessRestrictedToRemoteMachines": { "type": "boolean" }
      }
    }
  }
}