@prefix rdfs:       <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl:        <http://www.w3.org/2002/07/owl#>.
@prefix owlsight:   <http://pellet.owldl.com/ontology-browser/owlsight/> .
@prefix rdf:        <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

owlsight:Ontology a owl:Class.

owlsight:title a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

owlsight:description a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

# in the future, i think we maybe want to point this at a foaf:Person
owlsight:creator a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

owlsight:label a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

owlsight:url a owl:ObjectProperty;
    rdfs:domain owlsight:Ontology.

owlsight:seeAlso a owl:ObjectProperty;
    rdfs:domain owlsight:Ontology.

owlsight:version a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

# should probably be an enumeration
owlsight:owlVersion a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.

owlsight:lastUpdate a owl:DatatypeProperty;
    rdfs:range <http://www.w3.org/2001/XMLSchema#string>;
    rdfs:domain owlsight:Ontology.