SiteMap Model
Overview
The sitemap table stores information related to the organizational structure and site map of the system, such as which sites belong to which organizations. It also includes metadata such as timestamps for creation and modification.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | A unique identifier for the site map. This ensures each entry in the table can be uniquely referenced. | ❌ |
| created_at | date | The date and time when the site map was created. Useful for auditing or versioning. | ❌ |
| modified_at | date | The date and time when the site map was last modified. Helpful for tracking changes or syncing data. | ❌ |
Relationships
- Belongsto Unknown
- Belongsto Unknown
Sample JSON
{
"id": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}