-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.ttl
137 lines (113 loc) · 5.12 KB
/
graph.ttl
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
@prefix cnt: <http://www.w3.org/2011/content#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix ebucore: <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#> .
@prefix premis: <http://id.loc.gov/vocabulary/preservation/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/> .
# ====== Record Set = CD-ROM
<Record01> a rico:RecordSet ;
rico:title "NITRO Spielhallen Klassiker" ;
rico:descriptiveNote "Nostalgisch: über 100 Arcade-Klassiker!" ;
rico:date "1997" ;
rico:scopeAndContent "CD with arcade games as a supplement to a magazine" ;
rico:hasPublisher <Agent102> ;
rico:includesOrIncluded <Record02> ;
rico:hasInstantiation <Representation01> .
# ====== Record
<Record02> a rico:Record ;
rico:title "SOI, Spaced Out Invaders" ;
rico:hasAuthor <Agent101> ;
rico:date "1995" ;
rico:isOrWasRegulatedBy <Rule01> ;
schema:sameAs <https://archive.org/details/SpacedOutInvaders_1020> ;
rico:hasInstantiation <Representation03> .
# ====== Representations
<Representation01> a rico:Instantiation, premis:Representation ;
rico:name "Physical CD" ;
premis:storedAt "physical storage" ;
rico:hasExtent [ a rico:InstantiationExtent ;
rico:quantity "12" ;
rico:unitOfMeasurement "cm" ;
rico:descriptiveNote "diameter" ;
] .
<Representation02> a rico:Instantiation, premis:Representation ;
rico:name "ISO image of CD" ;
premis:wasDerivedFrom <Representation01> ;
premis:storedAt <File01>.
<Representation03> a rico:Instantiation, premis:Representation ;
rico:name "Executable of SOI-Game" ;
premis:storedAt <File02>;
premis:hasCharacteristics <Environment01> .
# ====== File
<File01> a premis:File ;
premis:storedAt <https://archive.org/download/1997DataBeckerNITROXPlosiveSharewareSpielhallenKlassiker/%281997%29%20%28Data%20Becker%29%20NITRO%20X-plosive%20Shareware%20Spielhallen%20Klassiker.7z> ;
premis:hasCompositionLevel "0" ;
premis:fixity [ a premis:Fixity ;
premis:fixityType "md5" ;
rdf:value "7aaa3ba488682dfe2d439fb68af900c1" ;
] ;
premis:size "191137905";
premis:orginalName "(1997) (Data Becker) NITRO X-plosive Shareware Spielhallen Klassiker.iso" ;
dct:format <iso> .
<File02> a premis:File ;
premis:storedAt <https://github.com/wildit/game-emul/raw/main/soi.zip> ;
premis:hasCompositionLevel "0" ;
premis:fixity [ a premis:Fixity ;
premis:fixityType "md5" ;
rdf:value "ebb7aed126c1e3e4ef9ca29f98dc8637" ;
] ;
premis:size "288740" ;
premis:orginalName "SOI.EXE" ;
dct:format <exe> ;
cnt:hasContent <Content01> .
# ====== Environment
<Environment01> a premis:EnvironmentCharacteristics, rico:Mechanism ;
premis:environmentName "MS-DOS" ;
rico:descriptiveNote "Microsoft's discontinued operating system" ;
premis:environmentFunctionType "operating system" ;
schema:sameAs <https://www.wikidata.org/wiki/Q47604> ;
premis:hasCharacteristic <Environment02>, <Environment03>, <Environment04>, <Environment05>.
<Environment02> a premis:EnvironmentCharacteristics, rico:Mechanism ;
premis:environmentName "Intel x86 platform";
rico:descriptiveNote "16-bit central processing unit" ;
premis:environmentFunctionType "processor" ;
schema:sameAs <https://www.wikidata.org/wiki/Q207539> .
<Environment03> a premis:EnvironmentCharacteristics, rico:Mechanism ;
premis:environmentName "Graphic Card" ;
premis:environmentFunctionType "input/output device" ;
premis:environmentDesignationNote "256 colours" ;
schema:sameAs <https://www.wikidata.org/wiki/Q4308> .
<Environment04> a premis:EnvironmentCharacteristics, rico:Mechanism ;
premis:environmentName "CD-ROM-Drive" ;
premis:environmentFunctionType "input/output device" ;
schema:sameAs <https://www.wikidata.org/wiki/Q3228765> .
<Environment05> a premis:EnvironmentCharacteristics, rico:Mechanism ;
premis:environmentName "Mouse" ;
premis:environmentFunctionType "pointing device" ;
schmea:sameAs <https://www.wikidata.org/wiki/Q7987> .
# ====== Rule
<Rule01> a rico:Rule ;
rico:type "Copyright" ;
rico:endDate "2004" .
# ====== Agent
<Agent101> a rico:Person ;
rico:name "Kurt W. Dekker" ;
rico:descriptiveNote "Kurt Dekker produced shareware games under his own name in the early 1990's and later marketed them under the name PLBM Games." ;
schema:url <https://www.mobygames.com/images/portraits/large/1526098812-2075630906.jpg> ;
rico:source <https://www.mobygames.com/developer/sheet/bio/developerId,11345/> .
<Agent102> a rico:CorporateBody ;
rico:name "Data Becker" ;
rico:type "Publisher" ;
rico:beginningDate "1981-01-07" ;
rico:endDate "2014-03-31 ".
# ====== File Format
<exe> a dct:FileFormat ;
rico:name "MS-DOS Executable" ;
skos:exactMatch <http://www.nationalarchives.gov.uk/pronom/fmt/13> ;
ebucore:hasMimeType "application/x-msdownload" .
<iso> a dct:FileFormat ;
rico:name "ISO 9660 image" ;
skos:exactMatch <https://www.iso.org/standard/17505.html> ;
ebucore:hasMimeType "application/octet-stream" .