-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
112 lines (112 loc) · 3.48 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
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
{
"profile": "tabular-data-package",
"resources": [
{
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"type": "string",
"format": "default",
"name": "patent",
"title": "Patent",
"description": "Number of the patent with country code"
},
{
"type": "string",
"format": "default",
"name": "country",
"title": "Country",
"description": "2 letter code: US, GB, FR, DE"
},
{
"type": "string",
"name": "url",
"title": "URL",
"description": "URL where the patent can be found, mostly Google",
"format": "default"
},
{
"name": "date_submitted",
"format": "default",
"title": "Submission Date",
"description": "date when then patent was submitted, not always available",
"type": "date"
},
{
"name": "date_issued",
"format": "default",
"title": "Publication Date",
"description": "date when then patent was issued",
"type": "date"
},
{
"name": "title",
"type": "string",
"format": "default",
"title": "Title",
"description": "patent title"
},
{
"name": "wikidata",
"type": "string",
"title": "Wikidata",
"description": "Wikidata concept URI",
"format": "uri"
},
{
"name": "inventor",
"type": "string",
"format": "default",
"description": "patent holders, separated by '; '",
"title": "Inventor"
},
{
"name": "assignee",
"format": "default",
"title": "Assignee",
"description": "patent assignees, separated by '; ', optional",
"type": "string"
},
{
"name": "cpc",
"type": "string",
"format": "default",
"title": "CPC",
"description": "classifications according to http://www.cooperativepatentclassification.org , separated by '; '"
},
{
"name": "collections",
"type": "string",
"format": "default",
"title": "Collections",
"description": "contexts of the patents defined here: https://github.com/birk/opticaleffectspatents , separated by '; '"
}
]
},
"name": "opticaleffectspatents",
"path": "opticaleffectspatents.csv"
}
],
"keywords": [
"patents",
"optical effects"
],
"licenses": [
{
"name": "CC0-1.0",
"title": "CC0 1.0",
"path": "https://creativecommons.org/publicdomain/zero/1.0/"
}
],
"name": "opticaleffectspatents",
"title": "Optical Effects Patents",
"description": "This list of patents was collected as part of the research for my dissertation Image as Collective: A History of Optical Effects in Hollywood's Studio System (2014). It does not claim to be a comprehensive list in the sense of containing all patents that cover the field but rather gathers those that were considered to be relevant at the time.",
"homepage": "https://github.com/birk/opticaleffectspatents",
"contributors": [
{
"title": "Birk Weiberg",
"role": "author"
}
]
}