@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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
the:conceptsExtracted a owl:DatatypeProperty ;
rdfs:label "derived" ;
rdfs:comment "an operational property" ;
rdfs:domain the:Entity ;
rdfs:range xsd:boolean .
<?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/conceptsExtracted">
<rdfs:domain rdf:resource="http://visualartsdna.org/thesaurus/Entity"/>
<rdfs:label>derived</rdfs:label>
<rdfs:comment>an operational property</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/thesaurus/conceptsExtracted",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "an operational property"
}
],
"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": "derived"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#boolean"
}
]
}
]<http://visualartsdna.org/thesaurus/conceptsExtracted> <http://www.w3.org/2000/01/rdf-schema#domain> <http://visualartsdna.org/thesaurus/Entity> .
<http://visualartsdna.org/thesaurus/conceptsExtracted> <http://www.w3.org/2000/01/rdf-schema#label> "derived" .
<http://visualartsdna.org/thesaurus/conceptsExtracted> <http://www.w3.org/2000/01/rdf-schema#comment> "an operational property" .
<http://visualartsdna.org/thesaurus/conceptsExtracted> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#boolean> .
<http://visualartsdna.org/thesaurus/conceptsExtracted> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .