schema1: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
schema1:CreativeWork schema1:license sh:IRI , schema1: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 schema1: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

schema1:license a rdf:Property ;
    rdfs:label "license" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes schema1:CreativeWork,
        sh:IRI ;
    rdfs:comment "A license document that applies to this content, typically indicated by URL." .