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