-
Notifications
You must be signed in to change notification settings - Fork 3
/
datapackage.json
75 lines (75 loc) · 1.69 KB
/
datapackage.json
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
{
"profile": "tabular-data-package",
"resources": [
{
"path": "dataset/stackoverflow_job_listing.csv",
"profile": "tabular-data-resource",
"name": "stackoverflow_job_listing",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "link",
"type": "string",
"format": "default"
},
{
"name": "category",
"type": "string",
"format": "default"
},
{
"name": "title",
"type": "string",
"format": "default"
},
{
"name": "description",
"type": "string",
"format": "default"
},
{
"name": "published_at",
"type": "string",
"format": "default"
},
{
"name": "location",
"type": "string",
"format": "default"
},
{
"name": "stackoverflow_id",
"type": "integer",
"format": "default"
},
{
"name": "author",
"type": "string",
"format": "default"
},
{
"name": "location_country",
"type": "string",
"format": "default"
},
{
"name": "location_city",
"type": "string",
"format": "default"
},
{
"name": "updated_at",
"type": "string",
"format": "default"
}
],
"missingValues": [
""
]
}
}
]
}