@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix dcterms: . @prefix foaf: . @prefix cc: . @prefix ttn: . <> rdf:type owl:Ontology ; rdfs:label "Thing Tracker Network Things Vocabulary" ; dcterms:creator ; dcterms:date "2013-02-11"^^xsd:date ; cc:license . ttn:Thing rdf:type rdfs:Class; rdfs:label "Thing"; rdfs:comment "Class of all things". ttn:Maintainer rdf:type rdfs:Class; rdfs:label "Maintainer"; rdfs:comment "Maintainer"; rdfs:subClassOf foaf:Agent. ttn:title rdf:type owl:ObjectProperty; rdfs:label "title"; rdfs:comment "Title of the thing"; rdfs:domain ttn:Thing. ttn:author rdf:type owl:ObjectProperty; rdfs:label "author"; rdfs:comment "an author of the thing"; rdfs:domain ttn:Maintainer; rdfs:domain ttn:Thing. ttn:description rdf:type owl:ObjectProperty; rdfs:label "description"; rdfs:comment "the description of the thing"; rdfs:domain ttn:Thing. ttn:url rdf:type owl:ObjectProperty; rdfs:label "url"; rdfs:comment "the url of the thing"; rdfs:domain ttn:Thing. ttn:license rdf:type owl:ObjectProperty; rdfs:label "license"; rdfs:comment "a license of the thing"; rdfs:domain ttn:Thing. ttn:thumbnail rdf:type owl:ObjectProperty; rdfs:label "thumbnail"; rdfs:comment "a thumbnail of the thing"; rdfs:domain ttn:Thing. ttn:created rdf:type owl:ObjectProperty; rdfs:label "created"; rdfs:comment "when the thing was created"; rdfs:domain ttn:Thing. ttn:updated rdf:type owl:ObjectProperty; rdfs:label "updated"; rdfs:comment "when the thing was last updated"; rdfs:domain ttn:Thing.