@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix the: <http://visualartsdna.org/thesaurus/> .
the:topic a owl:ObjectProperty ;
rdfs:label "topic" ;
rdfs:comment "The subject matter of the entity" ;
rdfs:domain the:Entity .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://visualartsdna.org/thesaurus/topic">
<rdfs:label>topic</rdfs:label>
<rdfs:comment>The subject matter of the entity</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="http://visualartsdna.org/thesaurus/Entity"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/thesaurus/topic",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The subject matter of the entity"
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://visualartsdna.org/thesaurus/Entity"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "topic"
}
]
}
]<http://visualartsdna.org/thesaurus/topic> <http://www.w3.org/2000/01/rdf-schema#label> "topic" .
<http://visualartsdna.org/thesaurus/topic> <http://www.w3.org/2000/01/rdf-schema#comment> "The subject matter of the entity" .
<http://visualartsdna.org/thesaurus/topic> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://visualartsdna.org/thesaurus/topic> <http://www.w3.org/2000/01/rdf-schema#domain> <http://visualartsdna.org/thesaurus/Entity> .