Skip to main content

Space Model

Overview

This table appears to define and store logical or visual "spaces" within an application—likely representing environments, areas, or organizational structures used for visualizations, digital twins, or resource grouping.

Fields

FieldTypeDescriptionRequired
idstringA unique identifier for the space.
thumbnailstringThe URL or path of the thumbnail image representing the space. Useful for UI cards, previews, or dashboards.
namestringThe name assigned to the space.
spaceSyncbooleanA Boolean flag (0 or 1) indicating whether the space is synced with external systems or services.
descriptionstringA brief description of the space. Helps users understand the context or topic.
hierarchyIdsarrayStores references to hierarchical structures related to the space. Used for categorizing, filtering, or nesting spaces.
visualizationCategorystringSpecifies the category under which the space is visualized.
spaceSettingsobjectConfiguration settings associated with the space
tagsarrayContains tags or labels associated with the space.
created_atdateThe date and time when the space was created.
modified_atdateThe date and time when the space was last modified.

Sample JSON

{
"id": "example_value",
"thumbnail": "example_value",
"name": "example_value",
"spaceSync": "example_value",
"description": "example_value",
"hierarchyIds": "example_value",
"visualizationCategory": "example_value",
"spaceSettings": "example_value",
"tags": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}