Content Item State Representations

The Content Engine state concept is represented by a combination of several Atom feed elements. The following examples show the combinations used to represent each state:

Draft
<app:control>
  <app:draft>yes</app:draft>
</app:control>
Submitted
<app:control>
  <app:draft>yes</app:draft>
  <vaext:state>submitted</vaext:state>
</app:control>
Approved
<app:control>
  <app:draft>yes</app:draft>
  <vaext:state>approved</vaext:state>
</app:control>
Published

This state is represented by the absence of an app:control element, as specified in the Atom Publishing Protocol specification.

Deleted
<metadata:deleted>yes</metadata:deleted>
<app:control>
  <app:draft>yes</app:draft>
</app:control>