-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcreationmodel-sample.json
47 lines (47 loc) · 1.02 KB
/
creationmodel-sample.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
{
"@context": {
"cro": "http://rhizomik.net/ontologies/copyrightonto#",
"sample": "http://rhizomik.net/ontologies/copyrightonto/creationmodel-sample.ttl#"
},
"@graph": [
{
"@id": "sample:literary_work",
"@type": "cro:Work"
},
{
"@id": "sample:serial",
"@type": "cro:Work",
"cro:isDerivationOf": {
"@id": "sample:literary_work"
}
},
{
"@id": "sample:script",
"@type": "cro:Manifestation",
"cro:isManifestationOf": {
"@id": "sample:serial"
},
"cro:hasPerformance": {
"@id": "sample:performance"
}
},
{
"@id": "sample:performance",
"@type": "cro:Performance",
"cro:hasRecording": {
"@id": "sample:motion_picture"
}
},
{
"@id": "sample:motion_picture",
"@type": "cro:AudiovisualRecording",
"cro:hasCommunication": {
"@id": "sample:broadcast"
}
},
{
"@id": "sample:broadcast",
"@type": "cro:Communication"
}
]
}