Skip to content

Commit ed5beb8

Browse files
committed
chore: update activityTypes tinybird datasource
1 parent 9e3bac3 commit ed5beb8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

services/libs/tinybird/datasources/activityTypes.datasource

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ DESCRIPTION >
33
- `id` is the unique identifier for the activity type record.
44
- `activityType` specifies the activity type (issues-opened, pull-request-opened, etc.). Using LowCardinality.
55
- `platform` is the platform the activity type applies to (github, gitlab, gerrit, etc.). Using LowCardinality.
6+
- `description` provides a human-readable description of what the activity type and platform represents.
67
- `isCodeContribution` indicates whether this activity counts as a code contribution.
78
- `isCollaboration` indicates whether this activity counts as a collaboration.
89
- `createdAt` and `updatedAt` are standard timestamp fields for record lifecycle tracking.
@@ -13,6 +14,7 @@ SCHEMA >
1314
`id` UUID `json:$.record.id`,
1415
`activityType` LowCardinality(String) `json:$.record.activityType`,
1516
`platform` LowCardinality(String) `json:$.record.platform`,
17+
`description` String `json:$.record.description`,
1618
`isCodeContribution` Bool `json:$.record.isCodeContribution`,
1719
`isCollaboration` Bool `json:$.record.isCollaboration`,
1820
`createdAt` DateTime64(3) `json:$.record.createdAt`,

0 commit comments

Comments
 (0)