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-writeuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WriteUser",
  "title": "WriteUser",
  "type": "object",
  "description": "Writable fields for creating or updating a user",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "First name",
      "example": "example_value"
    },
    "last_name": {
      "type": "string",
      "description": "Last name",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "description": "Email address",
      "example": "[email protected]"
    },
    "is_disabled": {
      "type": "boolean",
      "description": "Whether the account is disabled",
      "example": true
    },
    "locale": {
      "type": "string",
      "nullable": true,
      "description": "Locale setting",
      "example": "example_value"
    }
  }
}