@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:hasCollection a owl:ObjectProperty ;
rdfs:label "has collection" ;
rdfs:comment "A collection of the artist's works." ;
rdfs:domain cwva:Artist ;
rdfs:isDefinedBy cwva: ;
rdfs:range cwva:ArtworkCollection ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Category:Art_collections> .
<?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/hasCollection">
<rdfs:label>has collection</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://visualartsdna.org/model/"/>
<rdfs:range rdf:resource="http://visualartsdna.org/model/ArtworkCollection"/>
<rdfs:seeAlso rdf:resource="https://en.wikipedia.org/wiki/Category:Art_collections"/>
<rdfs:domain rdf:resource="http://visualartsdna.org/model/Artist"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:comment>A collection of the artist's works.</rdfs:comment>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/model/hasCollection",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "A collection of the artist's works."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://visualartsdna.org/model/Artist"
}
],
"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 collection"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://visualartsdna.org/model/ArtworkCollection"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "https://en.wikipedia.org/wiki/Category:Art_collections"
}
]
}
]<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://en.wikipedia.org/wiki/Category:Art_collections> .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#range> <http://visualartsdna.org/model/ArtworkCollection> .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#comment> "A collection of the artist's works." .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#label> "has collection" .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#domain> <http://visualartsdna.org/model/Artist> .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://visualartsdna.org/model/hasCollection> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://visualartsdna.org/model/> .