schema:license leaf node


URI

http://schema.org/license

Label

license

Description

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

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:license sh:IRI , schema:CreativeWork

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:license a rdf:Property ;
    rdfs:label "license" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes schema:CreativeWork,
        sh:IRI ;
    rdfs:comment "A license document that applies to this content, typically indicated by URL." .