@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:unitCode a owl:DatatypeProperty ;
rdfs:label "unit code" ;
rdfs:comment "The unit of measure." ;
rdfs:range xsd:string .
<?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/unitCode">
<rdfs:label>unit code</rdfs:label>
<rdfs:comment>The unit of measure.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://schema.org/unitCode",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The unit of measure."
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "unit code"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#string"
}
]
}
]<https://schema.org/unitCode> <http://www.w3.org/2000/01/rdf-schema#label> "unit code" .
<https://schema.org/unitCode> <http://www.w3.org/2000/01/rdf-schema#comment> "The unit of measure." .
<https://schema.org/unitCode> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://schema.org/unitCode> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .