-
Notifications
You must be signed in to change notification settings - Fork 2
/
datapackage.json
46 lines (46 loc) · 1.18 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
{
"name": "data-encryptionlaws",
"title": "Encryption Laws",
"homepage": "",
"version": "0.1.0",
"license": "PDDL-1.0",
"resources": [
{
"name": "cryptolaws",
"path": "cryptolaws.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "country",
"type": "string",
"description": "Country"
},
{
"name": "import_restrictions",
"type": "number",
"description": "Restrictions on the import of cryptography"
},
{
"name": "prohibit_use",
"type": "number",
"description": "Laws prohibiting the use of encryption"
},
{
"name": "license_use",
"type": "number",
"description": "License required for the use of encryption"
},
{
"name": "provide_keys",
"type": "number",
"description": "Requirement to provide decryption laws"
}
]
}
}
],
"description": "",
"repository": "https://github.com/digitalfreedom/data-encryptionlaws.git"
}