Looker · Schema
FolderBase
Basic folder information
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier |
| name | string | Display name |
| parent_id | string | Parent folder ID |
| content_metadata_id | integer | Content metadata ID |
| is_shared_root | boolean | Whether this is the shared root folder |
| is_users_root | boolean | Whether this is the users root folder |
| is_user_root | boolean | Whether this is a user's personal root folder |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "FolderBase",
"type": "object",
"description": "Basic folder information",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier"
},
"name": {
"type": "string",
"description": "Display name"
},
"parent_id": {
"type": "string",
"description": "Parent folder ID"
},
"content_metadata_id": {
"type": "integer",
"description": "Content metadata ID"
},
"is_shared_root": {
"type": "boolean",
"description": "Whether this is the shared root folder"
},
"is_users_root": {
"type": "boolean",
"description": "Whether this is the users root folder"
},
"is_user_root": {
"type": "boolean",
"description": "Whether this is a user's personal root folder"
}
}
}