@prefix cwva: <http://visualartsdna.org/model/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
cwva:hasMaterial a owl:ObjectProperty ;
rdfs:label "has material" ;
rdfs:comment "The specific material used in this work." ;
rdfs:isDefinedBy cwva: ;
rdfs:range cwva:ArtMaterial ;
rdfs:seeAlso <https://en.wikipedia.org/?title=Art_materials> .
<?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/model/hasMaterial">
<rdfs:range rdf:resource="http://visualartsdna.org/model/ArtMaterial"/>
<rdfs:isDefinedBy rdf:resource="http://visualartsdna.org/model/"/>
<rdfs:seeAlso rdf:resource="https://en.wikipedia.org/?title=Art_materials"/>
<rdfs:comment>The specific material used in this work.</rdfs:comment>
<rdfs:label>has material</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/model/hasMaterial",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The specific material used in this work."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://visualartsdna.org/model/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "has material"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://visualartsdna.org/model/ArtMaterial"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "https://en.wikipedia.org/?title=Art_materials"
}
]
}
]<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/2000/01/rdf-schema#range> <http://visualartsdna.org/model/ArtMaterial> .
<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://visualartsdna.org/model/> .
<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://en.wikipedia.org/?title=Art_materials> .
<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/2000/01/rdf-schema#comment> "The specific material used in this work." .
<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/2000/01/rdf-schema#label> "has material" .
<http://visualartsdna.org/model/hasMaterial> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .