Apache Ranger · Schema

AccessType

Access type in a policy item

Access ControlAuthorizationHadoopPolicy ManagementSecurityApacheOpen Source

Properties

Name Type Description
type string Access type name (read, write, execute, etc.)
isAllowed boolean Whether the access is allowed
View JSON Schema on GitHub

JSON Schema

apache-ranger-access-type-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-access-type-schema.json",
  "title": "AccessType",
  "description": "Access type in a policy item",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Access type name (read, write, execute, etc.)"
    },
    "isAllowed": {
      "type": "boolean",
      "description": "Whether the access is allowed"
    }
  }
}