Created
March 16, 2025 00:51
-
-
Save jalakoo/f49b75908e89af3fd96a30c6943153af to your computer and use it in GitHub Desktop.
Ontology Marketplace Test Turtle File
This file contains hidden or 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
@prefix : <http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/> . | |
@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#> . | |
@base <http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/> . | |
<http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10> rdf:type owl:Ontology . | |
################################################################# | |
# Object Properties | |
################################################################# | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/has_written | |
:has_written rdf:type owl:ObjectProperty ; | |
rdfs:domain :Author ; | |
rdfs:range :Book . | |
################################################################# | |
# Classes | |
################################################################# | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Aldous_Huxley | |
:Aldous_Huxley rdf:type owl:Class ; | |
rdfs:subClassOf :Author , | |
[ rdf:type owl:Restriction ; | |
owl:onProperty :has_written ; | |
owl:someValuesFrom :Brave_New_World | |
] . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Alice_Walker | |
:Alice_Walker rdf:type owl:Class ; | |
rdfs:subClassOf :Author , | |
[ rdf:type owl:Restriction ; | |
owl:onProperty :has_written ; | |
owl:someValuesFrom :The_Color_Purple | |
] . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Author | |
:Author rdf:type owl:Class . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Book | |
:Book rdf:type owl:Class . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Brave_New_World | |
:Brave_New_World rdf:type owl:Class ; | |
rdfs:subClassOf :Book . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Hamlet | |
:Hamlet rdf:type owl:Class ; | |
rdfs:subClassOf :Book . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Julius_Caesar | |
:Julius_Caesar rdf:type owl:Class ; | |
rdfs:subClassOf :Book . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/Macbeth | |
:Macbeth rdf:type owl:Class ; | |
rdfs:subClassOf :Book . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/The_Color_Purple | |
:The_Color_Purple rdf:type owl:Class ; | |
rdfs:subClassOf :Book . | |
### http://www.semanticweb.org/srikargadusu/ontologies/2025/0/untitled-ontology-10/William_Shakespeare | |
:William_Shakespeare rdf:type owl:Class ; | |
rdfs:subClassOf :Author , | |
[ rdf:type owl:Restriction ; | |
owl:onProperty :has_written ; | |
owl:someValuesFrom :Hamlet | |
] , | |
[ rdf:type owl:Restriction ; | |
owl:onProperty :has_written ; | |
owl:someValuesFrom :Julius_Caesar | |
] , | |
[ rdf:type owl:Restriction ; | |
owl:onProperty :has_written ; | |
owl:someValuesFrom :Macbeth | |
] . | |
### Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment