Google Data Studio · Schema

Looker Studio Permissions

Access control configuration for a Looker Studio asset. Contains a mapping of roles to their assigned members and an etag for optimistic concurrency control to detect concurrent modifications.

AnalyticsBusiness IntelligenceDashboardsDataReportingVisualization

Properties

Name Type Description
permissions object A map of role names to their member lists. Roles include OWNER, EDITOR, VIEWER, LINK_VIEWER, and LINK_EDITOR.
etag string Etag for optimistic concurrency control. Include this value in PATCH requests to detect and fail on concurrent modifications.
View JSON Schema on GitHub

JSON Schema

google-data-studio-permissions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "google-data-studio-permissions-schema.json",
  "title": "Looker Studio Permissions",
  "description": "Access control configuration for a Looker Studio asset. Contains a mapping of roles to their assigned members and an etag for optimistic concurrency control to detect concurrent modifications.",
  "type": "object",
  "properties": {
    "permissions": {
      "type": "object",
      "description": "A map of role names to their member lists. Roles include OWNER, EDITOR, VIEWER, LINK_VIEWER, and LINK_EDITOR.",
      "properties": {
        "OWNER": {
          "$ref": "#/$defs/RoleMembers"
        },
        "EDITOR": {
          "$ref": "#/$defs/RoleMembers"
        },
        "VIEWER": {
          "$ref": "#/$defs/RoleMembers"
        },
        "LINK_VIEWER": {
          "$ref": "#/$defs/RoleMembers"
        },
        "LINK_EDITOR": {
          "$ref": "#/$defs/RoleMembers"
        }
      },
      "additionalProperties": {
        "$ref": "#/$defs/RoleMembers"
      }
    },
    "etag": {
      "type": "string",
      "description": "Etag for optimistic concurrency control. Include this value in PATCH requests to detect and fail on concurrent modifications."
    }
  },
  "$defs": {
    "RoleMembers": {
      "type": "object",
      "description": "A list of members assigned to a particular role.",
      "properties": {
        "members": {
          "type": "array",
          "description": "List of member identifiers with type prefixes.",
          "items": {
            "$ref": "#/$defs/Member"
          }
        }
      },
      "required": [
        "members"
      ]
    },
    "Member": {
      "type": "string",
      "description": "A member identifier with a type prefix. Supported formats: user:[email protected] (Google account), group:[email protected] (Google Group), domain:example.com (organization domain), serviceAccount:[email protected] (Cloud service account), and allUsers (anyone with the link).",
      "examples": [
        "user:[email protected]",
        "group:[email protected]",
        "domain:example.com",
        "serviceAccount:[email protected]",
        "allUsers"
      ]
    }
  },
  "additionalProperties": false
}