@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cwva:fileFormat a owl:DatatypeProperty ;
rdfs:label "file format" ;
rdfs:comment "Indicates a specific file format." ;
rdfs:domain cwva:CreativeWork ;
rdfs:isDefinedBy cwva: ;
rdfs:range xsd:string ;
rdfs:seeAlso <https://en.wikipedia.org/wiki/File_format> .
<?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/fileFormat">
<rdfs:seeAlso rdf:resource="https://en.wikipedia.org/wiki/File_format"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="http://visualartsdna.org/model/"/>
<rdfs:comment>Indicates a specific file format.</rdfs:comment>
<rdfs:label>file format</rdfs:label>
<rdfs:domain rdf:resource="http://visualartsdna.org/model/CreativeWork"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "http://visualartsdna.org/model/fileFormat",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "Indicates a specific file format."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "http://visualartsdna.org/model/CreativeWork"
}
],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy": [
{
"@id": "http://visualartsdna.org/model/"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "file format"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#string"
}
],
"http://www.w3.org/2000/01/rdf-schema#seeAlso": [
{
"@id": "https://en.wikipedia.org/wiki/File_format"
}
]
}
]<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://en.wikipedia.org/wiki/File_format> .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#domain> <http://visualartsdna.org/model/CreativeWork> .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://visualartsdna.org/model/> .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates a specific file format." .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<http://visualartsdna.org/model/fileFormat> <http://www.w3.org/2000/01/rdf-schema#label> "file format" .