-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathODP
136 lines (133 loc) · 4 KB
/
ODP
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"@context": "http://schema.org/",
"@id": "url of collection",
"@type": "DataCatalog",
"name": "name of the collection",
"inLanguage": "language tag (use IETF BCP 47)",
"audience":
{
"@type": "EducationalAudience"
},
"dataset":[
{
"@type":"Dataset",
"@id": "record DOI that resolves into a working link",
"name": "name of record",
"description": "description of record",
"dateCreated": "dataset creation date (use ISO 8601 for the date format)",
"datePublished": "dataset publication date",
"copyrightYear": "copyright year",
"isPartOf":
{
"@type": "DataCatalog",
"@id": "DOI of parent data file",
"name": "name of parent data file (for derived datasets)",
"url": "url of parent data file"
},
"url": "record url",
"isAccessibleForFree": "Boolean (True or False)",
"publisher": "name of publisher",
"license":
{
"@type": "CreativeWork",
"url": "license url",
"name": "name of license",
"description": "description of license"
},
"sameAs": "record DOI",
"version": "version number",
"dateModified": "last modification date",
"citation":
{
"@type": "CreativeWork",
"@id": "DOI of associated publication",
"name": "name of associated publication",
"datePublished": "publication date for the associated publication",
"publisher":
{
"@type": "Organization",
"name": "name of publisher"
},
"author":
{
"@type":"Person",
"@id": "ORCID iD (FUTURE)",
"name":"name of author",
"affiliation":
{
"@type": "Organization",
"name": "organisation name"
}
}
},
"variablesMeasured": "this is a pending term we could use(see more at https://github.com/schemaorg/schemaorg/issues/1083",
"funder":
{
"@type": "Organization",
"name": "name of funder organisation"
},
"distribution":
{
"@type": "DataDownload",
"alternateName": "Index or File (search entry point here)",
"encodingFormat":"encoding format",
"name":"name of file",
"description": "description of file",
"Url": "file url for dowload",
"contentSize": "size of file"
},
"associatedMedia": [
{
"@type": "MediaObject",
"alternateName": "Configuration file",
"encodingFormat": "encoding format",
"name":"name of file",
"description": "description of file",
"contentUrl": "url to the record of the configuration file",
"contentSize": "size of configuration file",
"citation":
{
"@type": "Dataset",
"name": "name of ouput dataset"
},
"keywords": "software resease , global tag"
},
{
"@type": "DataDownload",
"alternateName": "Validation file",
"fileFormat":"file format",
"name":"name of file",
"description": "description of file",
"contentUrl": "file url for dowload"
}
]
}
],
"author":
{
"@type": "Person",
"@id": "ORCID iD (FUTURE)",
"name": "name of author (FUTURE)",
"affiliation":
{
"@type": "Organization",
"@id": "organisational ORCID iD (FUTURE)",
"name": "organisation name",
"url": "organisation website url",
"email": "organisation email",
"address":
{
"@type": "PostalAddress",
"streetAddress":"street name",
"addressLocality": "city or region",
"addressCountry": "country (use ISO 3166-1 alpha-2 for the country code)",
"postalCode": "postal code"
}
}
},
"contributor":
{
"@type": "Person",
"@id": "Fill in the same way as for the main author"
}
}