forked from Sakinat-Folorunso-Projects/excel2rdf-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContainerType.ttl
84 lines (82 loc) · 3.46 KB
/
ContainerType.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
# baseURI: file:/C:/Workspace/GithubC/USGIN/excel2rdf-template/ContainerType.ttl
@prefix cntainr: <https://purl.org/orex/voc/container/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:///C:/Workspace/GithubC/USGIN/excel2rdf-template/ContainerType.ttl>
rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
.
<https://purl.org/orex/voc/container>
rdf:type skos:ConceptScheme ;
dct:created "2022-06-01T00:00:00+00:00"^^xsd:datetime ;
dct:creator <https://orcid.org/0000-0001-6041-5302> ;
dct:creator "Carina Bennett" ;
dct:creator "Mathilde Westermann" ;
dct:description "Compiled from the JSC-SAMIS Interface control document for samples"@en ;
dct:hasVersion "0.1.0" ;
dct:modified "2022-09-08T15:57:47-07:00"^^xsd:datetime ;
dct:rights <https://spdx.org/licenses/CC0-1.0> ;
dct:title "Container types used for transporting O-REx samples"@en ;
skos:hasTopConcept cntainr:container ;
skos:prefLabel "Container types used for transporting O-REx samples"@en ;
.
cntainr:aluminumcontainer
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Aluminum container"@en ;
.
cntainr:aluminumwrapping
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Aluminum wrapping"@en ;
.
cntainr:container
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:definition "Any container; top concept for O-REx specimen container vocabulary"@en ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:narrower cntainr:aluminumcontainer ;
skos:narrower cntainr:aluminumwrapping ;
skos:narrower cntainr:customcontainer ;
skos:narrower cntainr:glassvial ;
skos:narrower cntainr:polycarbonatecontainer ;
skos:narrower cntainr:teflonbag ;
skos:prefLabel "Container"@en ;
skos:topConceptOf <https://purl.org/orex/voc/container> ;
.
cntainr:customcontainer
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Custom container"@en ;
.
cntainr:glassvial
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Glass vial"@en ;
.
cntainr:polycarbonatecontainer
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Polycarbonate container"@en ;
.
cntainr:teflonbag
rdf:type skos:Concept ;
dct:source <https://osiris-rex.atlassian.net/wiki/spaces/OREXSAMPLE/pages/410288138> ;
skos:broader cntainr:container ;
skos:inScheme <https://purl.org/orex/voc/container> ;
skos:prefLabel "Teflon bag"@en ;
.