Looker · Schema

CredentialsEmail

Email/password credentials for a user

AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization

Properties

Name Type Description
email string Email address
is_disabled boolean Whether these credentials are disabled
logged_in_at string Timestamp of last login with these credentials
created_at string Timestamp when these credentials were created
url string Relative URL
View JSON Schema on GitHub

JSON Schema

looker-credentials-email-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CredentialsEmail",
  "type": "object",
  "description": "Email/password credentials for a user",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email address"
    },
    "is_disabled": {
      "type": "boolean",
      "description": "Whether these credentials are disabled"
    },
    "logged_in_at": {
      "type": "string",
      "description": "Timestamp of last login with these credentials"
    },
    "created_at": {
      "type": "string",
      "description": "Timestamp when these credentials were created"
    },
    "url": {
      "type": "string",
      "description": "Relative URL"
    }
  }
}