schema1:publisher leaf node


URI

http://schema.org/publisher

Label

publisher

Description

The publisher of the creative work.

Usage

DOMAINPROPERTYRANGE
schema1:CreativeWork schema1:publisher schema1:Organization , schema1:Person

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/> .

schema1:publisher a rdf:Property ;
    rdfs:label "publisher" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes schema1:Organization,
        schema1:Person ;
    rdfs:comment "The publisher of the creative work." .