schema:editor leaf node


URI

http://schema.org/editor

Label

editor

Description

Specifies the Person who edited the CreativeWork.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:editor 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:editor a rdf:Property ;
    rdfs:label "editor" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes schema:Person ;
    rdfs:comment "Specifies the Person who edited the CreativeWork." .