-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create skeleton for adding indirect existentials in materialize
- Loading branch information
1 parent
23dad04
commit 5a4e0c1
Showing
3 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2/" | ||
xml:base="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2/" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | ||
<owl:Ontology rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Object Properties | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#has_part --> | ||
|
||
<owl:ObjectProperty rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#has_part"> | ||
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/> | ||
</owl:ObjectProperty> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Classes | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#car --> | ||
|
||
<owl:Class rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#car"> | ||
<rdfs:subClassOf> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#has_part"/> | ||
<owl:someValuesFrom rdf:resource="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#wheel"/> | ||
</owl:Restriction> | ||
</rdfs:subClassOf> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#convertible --> | ||
|
||
<owl:Class rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#convertible"> | ||
<rdfs:subClassOf rdf:resource="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#car"/> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#hubcap --> | ||
|
||
<owl:Class rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#hubcap"/> | ||
|
||
|
||
|
||
<!-- http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#wheel --> | ||
|
||
<owl:Class rdf:about="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#wheel"> | ||
<rdfs:subClassOf> | ||
<owl:Restriction> | ||
<owl:onProperty rdf:resource="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#has_part"/> | ||
<owl:someValuesFrom rdf:resource="http://www.semanticweb.org/vinicius/ontologies/2024/7/untitled-ontology-2#hubcap"/> | ||
</owl:Restriction> | ||
</rdfs:subClassOf> | ||
</owl:Class> | ||
</rdf:RDF> | ||
|
||
|
||
|
||
<!-- Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters