Last active
April 27, 2023 16:16
-
-
Save rogargon/8837cab7464f7b7f4654a51b8f14d7ae to your computer and use it in GitHub Desktop.
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 dbo: <http://dbpedia.org/ontology/> . | |
@prefix dbp: <http://dbpedia.org/property/> . | |
@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#> . | |
################################################################# | |
# Object Properties | |
################################################################# | |
### http://dbpedia.org/ontology/discoverer | |
dbo:discoverer rdf:type owl:ObjectProperty ; | |
rdfs:domain owl:Thing ; | |
rdfs:range dbo:Person . | |
### http://dbpedia.org/property/satelliteOf | |
dbp:satelliteOf rdf:type owl:ObjectProperty . | |
################################################################# | |
# Classes | |
################################################################# | |
### http://dbpedia.org/ontology/CelestialBody | |
dbo:CelestialBody rdf:type owl:Class . | |
### http://dbpedia.org/ontology/Person | |
dbo:Person rdf:type owl:Class . | |
### http://dbpedia.org/ontology/Planet | |
dbo:Planet rdf:type owl:Class ; | |
rdfs:subClassOf dbo:CelestialBody . | |
### http://dbpedia.org/ontology/Satellite | |
dbo:Satellite rdf:type owl:Class ; | |
rdfs:subClassOf [ rdf:type owl:Restriction ; | |
owl:onProperty dbp:satelliteOf ; | |
owl:allValuesFrom dbo:Planet | |
] ; | |
rdfs:subClassOf [ rdf:type owl:Restriction ; | |
owl:onProperty dbp:satelliteOf ; | |
owl:cardinality "1"^^xsd:nonNegativeInteger | |
] . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment