@@ -8,6 +8,9 @@ DESCRIPTION >
88 - `description` provides additional details about the collection's purpose (empty string if not provided).
99 - `categoryId` links to the category this collection belongs to (empty string if no category association).
1010 - `starred` indicates whether this collection is featured or highlighted (Bool, 0 default for not starred).
11+ - `isPrivate` indicates whether this collection is private (Bool, 0 default for public).
12+ - `ssoUserId` links to the SSO user who created this community collection (Nullable, null for curated collections).
13+ - `logoUrl` is the URL of the collection's logo image (empty string if not provided).
1114 - `createdAt` and `updatedAt` are standard timestamp fields for record lifecycle tracking.
1215
1316TAGS "Project collections"
@@ -19,6 +22,9 @@ SCHEMA >
1922 `description` String `json:$.record.description` DEFAULT '',
2023 `categoryId` String `json:$.record.categoryId` DEFAULT '',
2124 `starred` Bool `json:$.record.starred` DEFAULT 0,
25+ `isPrivate` Bool `json:$.record.isPrivate` DEFAULT 0,
26+ `ssoUserId` Nullable(String) `json:$.record.ssoUserId`,
27+ `logoUrl` String `json:$.record.logoUrl` DEFAULT '',
2228 `createdAt` DateTime64(3) `json:$.record.createdAt`,
2329 `updatedAt` DateTime64(3) `json:$.record.updatedAt`,
2430 `deletedAt` Nullable(DateTime64(3)) `json:$.record.deletedAt`
0 commit comments