schema:creativeWorkStatus leaf node


URI

http://schema.org/creativeWorkStatus

Label

creativeWorkStatus

Description

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.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:creativeWorkStatus xsd:string

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/> .
@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." .