@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:Rhythm a owl:Class ;
rdfs:label "Rhythm" ;
rdfs:comment "Visual movement through repetition and variation." ;
rdfs:isDefinedBy cwva: ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/Composition_(visual_arts)> ;
rdfs:subClassOf cwva:ArtPrinciples .
<?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/Rhythm">
<rdfs:isDefinedBy rdf:resource="http://visualartsdna.org/model/"/>
<rdfs:label>Rhythm</rdfs:label>
<rdfs:subClassOf rdf:resource="http://visualartsdna.org/model/ArtPrinciples"/>
<rdfs:seeAlso rdf:resource="https://en.wikipedia.org/wiki/Composition_(visual_arts)"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:comment>Visual movement through repetition and variation.</rdfs:comment>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/model/Rhythm",
"@type": [
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "Visual movement through repetition and variation."
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://visualartsdna.org/model/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "Rhythm"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "https://en.wikipedia.org/wiki/Composition_(visual_arts)"
}
],
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "http://visualartsdna.org/model/ArtPrinciples"
}
]
}
]<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://visualartsdna.org/model/ArtPrinciples> .
<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://visualartsdna.org/model/> .
<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://en.wikipedia.org/wiki/Composition_(visual_arts)> .
<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/2000/01/rdf-schema#label> "Rhythm" .
<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://visualartsdna.org/model/Rhythm> <http://www.w3.org/2000/01/rdf-schema#comment> "Visual movement through repetition and variation." .