-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paths3n.ttl
49 lines (42 loc) · 2.01 KB
/
s3n.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix schema: <http://schema.org/>.
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix ssn: <http://www.w3.org/ns/ssn/> .
@prefix s3n: <http://w3id.org/s3n/> .
foaf:Agent a owl:Class .
foaf:name a owl:AnnotationProperty .
voaf:Vocabulary a owl:Class .
dcterms:title a owl:AnnotationProperty .
dcterms:description a owl:AnnotationProperty .
dcterms:rights a owl:AnnotationProperty .
dcterms:license a owl:AnnotationProperty .
dcterms:created a owl:AnnotationProperty .
dcterms:creator a owl:AnnotationProperty .
skos:definition a owl:AnnotationProperty .
skos:example a owl:AnnotationProperty .
skos:note a owl:AnnotationProperty .
vann:preferredNamespacePrefix a owl:AnnotationProperty .
vann:preferredNamespaceUri a owl:AnnotationProperty .
schema:domainIncludes a owl:AnnotationProperty .
schema:rangeIncludes a owl:AnnotationProperty .
time:TemporalEntity a owl:Class .
s3n: a owl:Ontology , voaf:Vocabulary ;
dcterms:title "Semantic Smart Sensor Network (S3N) Ontology"@en ;
dcterms:description "This ontology contains the three modules of the S3N ontology."@en ;
dcterms:creator <http://maxime-lefrancois.info/me#> ;
dcterms:creator [ a foaf:Agent ; foaf:name "Samya Sagar"@en ] ;
dcterms:license <https://www.apache.org/licenses/LICENSE-2.0> ;
dcterms:created "2018-01-11"^^xsd:date ;
owl:imports s3n:S3NCore, s3n:S3NProcedure, s3n:S3NThing ;
vann:preferredNamespacePrefix "s3n" ;
vann:preferredNamespaceUri "http://w3id.org/s3n/" .
<http://maxime-lefrancois.info/me#> a foaf:Agent ; foaf:name "Maxime Lefrançois"@en .