Looker · Schema
SpaceBase
Basic space (folder) information
AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier |
| name | string | Display name |
| parent_id | string | Parent space ID |
| is_shared_root | boolean | Whether this is the shared root space |
| is_users_root | boolean | Whether this is the users root space |
| is_user_root | boolean | Whether this is a user's personal root space |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SpaceBase",
"title": "SpaceBase",
"type": "object",
"description": "Basic space (folder) information",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier",
"example": "abc123"
},
"name": {
"type": "string",
"description": "Display name",
"example": "Example Title"
},
"parent_id": {
"type": "string",
"nullable": true,
"description": "Parent space ID",
"example": "500123"
},
"is_shared_root": {
"type": "boolean",
"description": "Whether this is the shared root space",
"example": true
},
"is_users_root": {
"type": "boolean",
"description": "Whether this is the users root space",
"example": true
},
"is_user_root": {
"type": "boolean",
"description": "Whether this is a user's personal root space",
"example": true
}
}
}