-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatapackage.json
53 lines (53 loc) · 1.77 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
{
"name": "resellers",
"version": "0.1.0",
"license": "PDDL-1.0",
"resources": [{
"path": "resellers.csv",
"schema": {
"fields": [{
"name": "company",
"title": "name of company that is a reseller",
"type": "string"
},{
"name": "entity",
"title": "type of business entity of company",
"type": "string"
},{
"name": "country",
"title": "country of origin based on ISO 3166",
"type": "string"
},{
"name": "region",
"title": "region of origin based on ISO 3166",
"type": "string"
},{
"name": "municipality",
"title": "city or town where office of company is located",
"type": "string"
},{
"name": "suppliers",
"title": "description of work performed",
"type": "string"
},{
"name": "government_customers",
"title": "customers who are governments",
"type": "string"
},{
"name": "corporate_customers",
"title": "customers who are corporations",
"type": "string"
},{
"name": "website",
"title": "website of company",
"type": "string"
},{
"name": "notes",
"title": "miscellaneous notes",
"type": "string"
}]
}
}],
"description": "This is currently a list of these resellers throughout the world and some additional details. Currently, this data package is mostly resellers known for working with Italian company Hacking Team, but more will be added soon",
"repository": "https://github.com/digitalfreedom/data-resellers.git"
}