http://schema.org/author
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.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:CreativeWork | schema:author | schema:Person , schema:Organization |
@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." .