# Copyright (C) 2006 Andreas Bolka, System One @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix : . @prefix dc: . @prefix skos: . # -- custom classes -- :Article a owl:Class ; rdfs:label "Article" ; . :Category a owl:Class ; rdfs:label "Category" ; rdfs:subClassOf :Article ; . # -- custom properties -- :link a owl:ObjectProperty ; rdfs:label "link" ; . :internalLink a owl:ObjectProperty ; rdfs:label "internalLink" ; rdfs:subPropertyOf :link ; . :externalLink a owl:ObjectProperty ; rdfs:label "externalLink" ; rdfs:subPropertyOf :link ; . :interwikiLink a owl:ObjectProperty ; rdfs:label "interwikiLink" ; rdfs:subPropertyOf :link ; . :redirectsTo a owl:DatatypeProperty ; rdfs:label "redirectsTo" ; rdfs:subPropertyOf :link ; . :text a owl:ObjectProperty ; rdfs:label "text" ; . # -- further properties -- # dc:title # dc:modified # dc:contributor # skos:subject # skos:narrower