@base <https://wordnet.dk/dannet/external/owl/Thing> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

owl:Thing rdf:type owl:Class;
          rdfs:subClassOf owl:Thing;
          rdfs:isDefinedBy owl:;
          rdfs:comment "The class of OWL individuals.", "Klassen af OWL-individer."@da;
          rdfs:label "Thing", "ting"@da.

# Relation labels
rdf:type rdfs:label "type"@da, "type".
owl:Class rdfs:label "Class", "klasse"@da.
rdfs:subClassOf rdfs:label "underklasse af"@da, "subClassOf".
owl:Thing rdfs:label "Thing", "ting"@da.
rdfs:isDefinedBy rdfs:label "er defineret i"@da, "isDefinedBy".
rdfs:comment rdfs:label "kommentar"@da, "comment".
rdfs:label rdfs:label "label", "etiket"@da.

