-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathsample_manifest.json
More file actions
170 lines (170 loc) · 4.88 KB
/
sample_manifest.json
File metadata and controls
170 lines (170 loc) · 4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"metadata": {
"dbt_version": "1.5.0",
"project_name": "sample_dbt_project",
"generated_at": "2024-01-10T00:00:00Z",
"invocation_id": "12345678-1234-1234-1234-123456789012"
},
"nodes": {
"model.sample_dbt_project.driver_stats": {
"name": "driver_stats",
"unique_id": "model.sample_dbt_project.driver_stats",
"resource_type": "model",
"database": "feast_demo",
"schema": "public",
"alias": "driver_stats",
"description": "Driver statistics aggregated hourly for ML features",
"columns": {
"driver_id": {
"name": "driver_id",
"description": "Unique driver identifier",
"data_type": "INT64",
"tags": ["entity", "primary_key"],
"meta": {}
},
"event_timestamp": {
"name": "event_timestamp",
"description": "Timestamp of the event",
"data_type": "TIMESTAMP",
"tags": ["timestamp"],
"meta": {}
},
"trip_count": {
"name": "trip_count",
"description": "Total number of trips completed",
"data_type": "INT64",
"tags": ["feature"],
"meta": {}
},
"avg_rating": {
"name": "avg_rating",
"description": "Average driver rating (1-5 scale)",
"data_type": "FLOAT64",
"tags": ["feature"],
"meta": {}
},
"total_earnings": {
"name": "total_earnings",
"description": "Total earnings in dollars",
"data_type": "FLOAT64",
"tags": ["feature"],
"meta": {}
},
"is_active": {
"name": "is_active",
"description": "Whether driver is currently active",
"data_type": "BOOLEAN",
"tags": ["feature"],
"meta": {}
}
},
"tags": ["feast", "ml", "driver"],
"meta": {
"owner": "ml-team@example.com",
"team": "driver-experience"
},
"depends_on": {
"nodes": ["source.sample_dbt_project.raw_trips"]
}
},
"model.sample_dbt_project.customer_stats": {
"name": "customer_stats",
"unique_id": "model.sample_dbt_project.customer_stats",
"resource_type": "model",
"database": "feast_demo",
"schema": "public",
"alias": "customer_stats",
"description": "Customer statistics for personalization features",
"columns": {
"customer_id": {
"name": "customer_id",
"description": "Unique customer identifier",
"data_type": "STRING",
"tags": ["entity"],
"meta": {}
},
"event_timestamp": {
"name": "event_timestamp",
"description": "Event timestamp",
"data_type": "TIMESTAMP",
"tags": [],
"meta": {}
},
"order_count": {
"name": "order_count",
"description": "Total number of orders placed",
"data_type": "INT64",
"tags": ["feature"],
"meta": {}
},
"avg_order_value": {
"name": "avg_order_value",
"description": "Average order value in dollars",
"data_type": "FLOAT64",
"tags": ["feature"],
"meta": {}
},
"preferred_payment": {
"name": "preferred_payment",
"description": "Preferred payment method",
"data_type": "STRING",
"tags": ["feature"],
"meta": {}
}
},
"tags": ["feast", "ml", "customer"],
"meta": {
"owner": "ml-team@example.com"
},
"depends_on": {
"nodes": []
}
},
"model.sample_dbt_project.location_stats": {
"name": "location_stats",
"unique_id": "model.sample_dbt_project.location_stats",
"resource_type": "model",
"database": "feast_demo",
"schema": "public",
"alias": "location_stats",
"description": "Location-based statistics (no feast tag)",
"columns": {
"location_id": {
"name": "location_id",
"description": "Location identifier",
"data_type": "STRING",
"tags": [],
"meta": {}
},
"event_timestamp": {
"name": "event_timestamp",
"description": "Event timestamp",
"data_type": "TIMESTAMP",
"tags": [],
"meta": {}
},
"demand_score": {
"name": "demand_score",
"description": "Demand score for the location",
"data_type": "FLOAT64",
"tags": [],
"meta": {}
}
},
"tags": ["analytics"],
"meta": {},
"depends_on": {
"nodes": []
}
}
},
"sources": {
"source.sample_dbt_project.raw_trips": {
"name": "raw_trips",
"unique_id": "source.sample_dbt_project.raw_trips",
"source_name": "raw_data",
"schema": "raw",
"identifier": "trips"
}
}
}