schema:contentUrl leaf node


URI

http://schema.org/contentUrl

Label

contentUrl

Description

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

Usage

DOMAINPROPERTYRANGE
schema:MediaObject schema:contentUrl sh:IRI

Implementation

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

schema:contentUrl a rdf:Property ;
    rdfs:label "contentUrl" ;
    schema:domainIncludes schema:MediaObject ;
    schema:rangeIncludes sh:IRI ;
    rdfs:comment "Actual bytes of the media object, for example the image file or video file." .