Looker · Schema

WriteUser

Writable fields for creating or updating a user

AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization

Properties

Name Type Description
first_name string First name
last_name string Last name
email string Email address
is_disabled boolean Whether the account is disabled
locale string Locale setting
View JSON Schema on GitHub

JSON Schema

looker-write-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WriteUser",
  "type": "object",
  "description": "Writable fields for creating or updating a user",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "First name"
    },
    "last_name": {
      "type": "string",
      "description": "Last name"
    },
    "email": {
      "type": "string",
      "description": "Email address"
    },
    "is_disabled": {
      "type": "boolean",
      "description": "Whether the account is disabled"
    },
    "locale": {
      "type": "string",
      "description": "Locale setting"
    }
  }
}