schema:copyrightNotice leaf node


URI

http://schema.org/copyrightNotice

Label

copyrightNotice

Description

Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.

Usage

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

schema:copyrightNotice a rdf:Property ;
    rdfs:label "copyrightNotice" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes xsd:string ;
    rdfs:comment "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work." .