-
Notifications
You must be signed in to change notification settings - Fork 4
/
example-ontology-full-imports.ttl
43 lines (33 loc) · 2.32 KB
/
example-ontology-full-imports.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
@prefix : <http://www.semanticweb.org/tim/ontologies/2024/8/example-ontology-full-imports/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@base <http://www.semanticweb.org/tim/ontologies/2024/8/example-ontology-full-imports/> .
<http://www.semanticweb.org/tim/ontologies/2024/8/example-ontology-full-imports> rdf:type owl:Ontology ;
owl:imports <https://raw.githubusercontent.com/BFO-Mappings/PROV-to-BFO/main/prov-cco-directmappings.ttl> ,
<https://raw.githubusercontent.com/CommonCoreOntology/CommonCoreOntologies/refs/tags/v1.6-2024-09-26/src/cco-merged/CommonCoreOntologiesMerged.ttl> ,
<https://www.w3.org/ns/prov> ;
rdfs:comment "This example ontology demonstrates an import of the PROV-CCO mapping, combined with an import of the PROV and CCO ontologies." .
:Book rdf:type owl:NamedIndividual ;
rdfs:label "Introduction to Description Logic" ;
prov:wasAttributedTo :Author1, :Author2, :Author3, :Author4 ;
prov:wasGeneratedBy :BookPublicationActivity .
:Author1 rdf:type owl:NamedIndividual, prov:Person ;
rdfs:label "Baader, F." .
:Author2 rdf:type owl:NamedIndividual, prov:Person ;
rdfs:label "Horrocks, I." .
:Author3 rdf:type owl:NamedIndividual, prov:Person ;
rdfs:label "Lutz, C." .
:Author4 rdf:type owl:NamedIndividual, prov:Person ;
rdfs:label "Sattler, U." .
:Publisher rdf:type owl:NamedIndividual, prov:Organization ;
rdfs:label "Cambridge University Press" ;
prov:atLocation :PublisherLocation .
:PublisherLocation rdf:type owl:NamedIndividual, prov:Location ;
rdfs:label "Cambridge, UK" .
:BookPublicationActivity rdf:type owl:NamedIndividual, prov:Activity ;
prov:wasAssociatedWith :Publisher ;
prov:startedAtTime "2017-01-01T00:00:00Z"^^xsd:dateTime .