@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
schema:width a owl:ObjectProperty ;
rdfs:label "width" ;
rdfs:range schema:QuantitativeValue .
<?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="https://schema.org/width">
<rdfs:label>width</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:range rdf:resource="https://schema.org/QuantitativeValue"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://schema.org/width",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "width"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "https://schema.org/QuantitativeValue"
}
]
}
]<https://schema.org/width> <http://www.w3.org/2000/01/rdf-schema#label> "width" .
<https://schema.org/width> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://schema.org/width> <http://www.w3.org/2000/01/rdf-schema#range> <https://schema.org/QuantitativeValue> .