forked from elithrar/centiment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbigquery.schema.json
More file actions
56 lines (56 loc) · 1.3 KB
/
bigquery.schema.json
File metadata and controls
56 lines (56 loc) · 1.3 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
[
{
"type": "INTEGER",
"name": "count",
"mode": "NULLABLE",
"description": "The total count of tweets aggregated"
},
{
"type": "TIMESTAMP",
"name": "fetchedAt",
"mode": "NULLABLE",
"description": "The timestamp at which the Sentiment was aggregated"
},
{
"type": "INTEGER",
"name": "lastSeenID",
"mode": "NULLABLE",
"description": "The most recent status ID processed."
},
{
"type": "FLOAT",
"name": "score",
"mode": "NULLABLE",
"description": "The averaged (mean) sentiment score of all tweets processed"
},
{
"type": "FLOAT",
"name": "stdDev",
"mode": "NULLABLE",
"description": "The standard deviation (sample) of the score for all tweets processed"
},
{
"type": "FLOAT",
"name": "variance",
"mode": "NULLABLE",
"description": "The variance (sample) of the score for all tweets processed"
},
{
"type": "STRING",
"name": "query",
"mode": "NULLABLE",
"description": "The search query made against Twitter"
},
{
"type": "STRING",
"name": "topic",
"mode": "NULLABLE",
"description": "The topic (description) of the search"
},
{
"type": "STRING",
"name": "id",
"mode": "NULLABLE",
"description": "The ID from the original data store (e.g. Firestore)"
}
]