Apache Ranger · Schema

AuditList

Access audit log entries

Access ControlAuthorizationHadoopPolicy ManagementSecurityApacheOpen Source

Properties

Name Type Description
totalCount integer
auditList array
View JSON Schema on GitHub

JSON Schema

apache-ranger-audit-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ranger/refs/heads/main/json-schema/apache-ranger-audit-list-schema.json",
  "title": "AuditList",
  "description": "Access audit log entries",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer"
    },
    "auditList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AuditEntry"
      }
    }
  }
}