schema:publisher leaf node


URI

http://schema.org/publisher

Label

publisher

Description

The publisher of the creative work.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:publisher schema:Organization , schema: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 schema: <http://schema.org/> .

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