-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.json
More file actions
86 lines (84 loc) · 2.48 KB
/
Copy pathproducts.json
File metadata and controls
86 lines (84 loc) · 2.48 KB
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
{
"@context": [
"https://w3id.org/skg-if/context/skg-if.json",
{
"@base": "https://w3id.org/skg-if/sandbox/oc/",
"skg": "https://w3id.org/skg-if/sandbox/oc/",
"ro" : "http://purl.org/wf4ever/wf4ever#",
"rocrate_contributor": "http://purl.org/spar/pro/contributor",
"rocrate_researchObject": "http://purl.org/wf4ever/wf4ever#ResearchObject",
"rocrate_email": "http://w3id.org/ro-id/rohub/model#email",
"rocrate_has_part": { "@id": "http://purl.org/vocab/frbr/core#part", "@type": "@vocab", "@nest": "related_products", "@container": "@set" }
}
],
"@graph": [{
"entity_type": "product",
"product_type": "research data",
"local_identifier": "?id$anchor",
"identifiers":[
{
"scheme": "w3id",
"value": "?ro_id"
},
{
"scheme": "url",
"value": "?id"
}
],
"titles": {
"none": "?ro_title"
},
"abstracts":{
"none": "?ro_desc"
},
"contributions":
{
"by": "?author_id",
"role": "author"
},
"manifestations":{
"type": {
"labels": {
"en": "RO-Crate"
},
"defined_in": "https://schema.org/",
"class": "https://schema.org/Dataset"
},
"dates":{
"publication": "?created",
"creation": "?created",
"modified": "?modified"
},
"identifiers":
{
"scheme": "w3id",
"value": "?ro_id"
}
},
"funding": "?funding$asList",
"topics": "?subject$asList",
"rocrate_has_part": "?part_id",
"hosting_data_source": "https://doi.org/10.25504/FAIRsharing.d3c5fd"
}],
"$where": [
"?id a ro:ResearchObject",
"?id dct:title ?ro_title",
"?id dct:description ?ro_desc",
"?id pav:authoredBy ?author_id",
"OPTIONAL { ?id pav:contributedBy ?contributor_id}",
"?id ore:aggregates ?part_id",
"?id dct:created ?created",
"?id dct:modified ?modified",
"OPTIONAL { ?id sch:funding ?funding}",
"OPTIONAL { ?id dct:subject ?subject}",
"BIND (CONCAT(\"ro-id/\",REPLACE(STR(?id), \"^.*/([^/]*)$\", \"$1\")) as ?ro_id)"
],
"$prefixes": {
"dct" : "http://purl.org/dc/terms/",
"ro" : "http://purl.org/wf4ever/ro#",
"pav": "http://purl.org/pav/",
"ore": "http://www.openarchives.org/ore/terms/",
"sch": "http://schema.org/"
},
"$limit": 100
}