sdo:contentUrl leaf node


URI

https://schema.org/contentUrl

Label

contentUrl

Description

Actual bytes of the media object, for example the image file or video file.

Usage

DOMAINPROPERTYRANGE
sdo:MediaObject sdo:contentUrl sdo:URL

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .

sdo:contentUrl a rdf:Property ;
    rdfs:label "contentUrl" ;
    rdfs:comment "Actual bytes of the media object, for example the image file or video file."@en,
        "Werkelijke bytes van het mediaobject, bijvoorbeeld het afbeeldingsbestand of videobestand."@nl ;
    rdfs:domain sdo:MediaObject ;
    rdfs:range sdo:URL .