-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathokn-portals-ontology.ttl
110 lines (105 loc) · 3.11 KB
/
okn-portals-ontology.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
# baseURI: https://connaissance.io/onto/data/portals
# imports: http://purl.org/dc/terms/
# imports: http://topbraid.org/schema/schema-single-range
# imports: http://www.w3.org/2003/01/geo/wgs84_pos
# imports: http://www.w3.org/2004/02/skos/core
# imports: http://www.w3.org/ns/prov#
@prefix portals: <https://connaissance.io/onto/data/portals#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://connaissance.io/onto/data/portals>
rdf:type owl:Ontology ;
owl:imports <http://purl.org/dc/terms/> ;
owl:imports <http://topbraid.org/schema/schema-single-range> ;
owl:imports <http://www.w3.org/2003/01/geo/wgs84_pos> ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
owl:imports prov: ;
dcterms:created "2020-01-12"^^xsd:date ;
dcterms:modified "2022-12-10"@en ;
vann:preferredNamespacePrefix "portals" ;
vann:preferredNamespaceUri "https://connaissance.io/onto/data/portals#" ;
owl:versionInfo "Version 1.1" .
portals:DataPortals
rdf:type owl:Class ;
rdfs:label "Data Portals" ;
rdfs:subClassOf <http://schema.org/DataCatalog> ;
rdfs:subClassOf skos:Concept ;
skos:inScheme portals:DataSourceConcepts ;
skos:prefLabel "Data Portals" ;
.
portals:DataSourceConcepts
rdf:type skos:ConceptScheme ;
rdfs:label "Data Source Concepts" ;
skos:prefLabel "Data Source Concepts" ;
.
portals:api_endpoint
rdf:type owl:DatatypeProperty ;
rdfs:label "API endpoint" ;
skos:prefLabel "API endpoint" ;
.
portals:api_type
rdf:type owl:DatatypeProperty ;
rdfs:label "API type" ;
skos:prefLabel "API type" ;
.
portals:country
rdf:type owl:DatatypeProperty ;
rdfs:label "country" ;
skos:prefLabel "country" ;
.
portals:hasURI
rdf:type owl:DatatypeProperty ;
rdfs:label "has URI" ;
skos:prefLabel "has URI" ;
.
portals:licenseID
rdf:type owl:DatatypeProperty ;
rdfs:label "license ID" ;
skos:prefLabel "license ID" ;
.
portals:licenseURL
rdf:type owl:DatatypeProperty ;
rdfs:label "license URL" ;
skos:prefLabel "license URL" ;
.
portals:metadata_created
rdf:type owl:DatatypeProperty ;
rdfs:label "metadata created" ;
skos:prefLabel "metadata created" ;
.
portals:metadata_download
rdf:type owl:DatatypeProperty ;
rdfs:label "Full metadata download" ;
skos:prefLabel "Full metadata download" ;
.
portals:place
rdf:type owl:DatatypeProperty ;
rdfs:label "place" ;
skos:prefLabel "place" ;
.
portals:portal_URI
rdf:type owl:DatatypeProperty ;
rdfs:label "portal URI" ;
skos:prefLabel "portal URI" ;
.
portals:publisherClass
rdf:type owl:DatatypeProperty ;
rdfs:label "publisher class" ;
skos:prefLabel "publisher class" ;
.
portals:status
rdf:type owl:DatatypeProperty ;
rdfs:label "status" ;
skos:prefLabel "status" ;
.
portals:tags
rdf:type owl:DatatypeProperty ;
rdfs:label "tags" ;
skos:prefLabel "tags" ;
.