Apache Ranger · Schema

UserList

List of Ranger users

Access ControlAuthorizationHadoopPolicy ManagementSecurityApacheOpen Source

Properties

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

JSON Schema

apache-ranger-user-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-user-list-schema.json",
  "title": "UserList",
  "description": "List of Ranger users",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer"
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RangerUser"
      }
    }
  }
}