Looker · Schema
CredentialsEmail
Email/password credentials for a user
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| 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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CredentialsEmail",
"title": "CredentialsEmail",
"type": "object",
"description": "Email/password credentials for a user",
"properties": {
"email": {
"type": "string",
"description": "Email address",
"example": "[email protected]"
},
"is_disabled": {
"type": "boolean",
"description": "Whether these credentials are disabled",
"example": true
},
"logged_in_at": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "Timestamp of last login with these credentials",
"example": "2026-01-15T10:30:00Z"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when these credentials were created",
"example": "2026-01-15T10:30:00Z"
},
"url": {
"type": "string",
"description": "Relative URL",
"readOnly": true,
"example": "https://www.example.com"
}
}
}