schema1: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
schema1:CreativeWork schema1:author 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:author a rdf:Property ;
    rdfs:label "author" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes schema1:Organization,
        schema1: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." .