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