schema:author leaf node


URI

http://schema.org/author

Label

author

Description

The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:author 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:author a rdf:Property ;
    rdfs:label "author" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes schema:Organization,
        schema:Person ;
    rdfs:comment "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably." .