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