sdo:license leaf node


URI

https://schema.org/license

Label

license

Description

A license document that applies to this content, typically indicated by URL.

Usage

DOMAINPROPERTYRANGE
sdo:CreativeWork sdo:license xsd:string

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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

sdo:license a rdf:Property ;
    rdfs:label "license"@en,
        "licentie"@nl ;
    rdfs:comment "A license document that applies to this content, typically indicated by URL."@en,
        "Een licentiedocument dat van toepassing is op de inhoud van dit audiovisuele object, doorgaans met verwijzing naar een URL."@nl ;
    rdfs:domain sdo:CreativeWork ;
    rdfs:range xsd:string .