http://schema.org/creativeWorkStatus
The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:CreativeWork | schema:creativeWorkStatus | xsd:string |
@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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:creativeWorkStatus a rdf:Property ;
rdfs:label "creativeWorkStatus" ;
schema:domainIncludes schema:CreativeWork ;
schema:rangeIncludes xsd:string ;
rdfs:comment "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle." .