Showing:

Annotations
Attributes
Diagrams
Facets
Instances
Model
Properties
Source
Used by

Table of Contents

Group by:
Main schema workflow.xsd
Namespace No namespace
Properties
attribute form default unqualified
element form default qualified
[ top ]
Element cwrc
Namespace No namespace
Annotations
Element cwrc can hold a collection of workflow elements.
Diagram
Diagram index.tmp#workflow
Properties
content complex
Model
Children workflow
Instance
<cwrc>
  <workflow date="" time="" toolID="" userID="" workflowID="">{1,unbounded}</workflow>
</cwrc>
Source
<xs:element name="cwrc">
  <xs:annotation>
    <xs:documentation>Element cwrc can hold a collection of workflow elements.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element maxOccurs="unbounded" ref="workflow"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>
[ top ]
Element workflow
Namespace No namespace
Annotations
Element workflow contains a workflow record containing an activity element
(the workflow activity being chronicled) and an assigned element (the next workflow activity
in the workflow chain).
Diagram
Diagram index.tmp#attribute-date index.tmp#workflow_time index.tmp#workflow_workflowID index.tmp#attribute-userID index.tmp#workflow_toolID index.tmp#activity index.tmp#assigned
Properties
content complex
Used by
Element cwrc
Model
Children activity, assigned
Instance
<workflow date="" time="" toolID="" userID="" workflowID="">
  <activity category="" stamp="" status="">{0,1}</activity>
  <assigned category="" process="">{0,1}</assigned>
</workflow>
Attributes
QName Type Use Annotation
date xs:date required
Date format in the form of YYYY-MM-DD
time xs:time optional
Time format in the form of hh:mm:ss.  Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT
toolID xs:NCName optional
Tool ID
userID xs:NCName required
User ID
workflowID xs:string optional
Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.
Source
<xs:element name="workflow">
  <xs:annotation>
    <xs:documentation>Element workflow contains a workflow record containing an activity element (the workflow activity being chronicled) and an assigned element (the next workflow activity in the workflow chain).</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element minOccurs="0" ref="activity"/>
      <xs:element minOccurs="0" ref="assigned"/>
    </xs:sequence>
    <xs:attributeGroup ref="attribute-date"/>
    <xs:attribute name="time" type="xs:time">
      <xs:annotation>
        <xs:documentation>Time format in the form of hh:mm:ss. Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="workflowID" type="xs:string">
      <xs:annotation>
        <xs:documentation>Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attributeGroup ref="attribute-userID"/>
    <xs:attribute name="toolID" type="xs:NCName">
      <xs:annotation>
        <xs:documentation>Tool ID</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
[ top ]
Element activity
Namespace No namespace
Annotations
Element activity captures information on a workflow category and/or stamp process and its completion status, as well 
as an activity note, and message to users about the completed workflow process.
Diagram
Diagram index.tmp#attribute-category index.tmp#attribute-status index.tmp#activity_stamp index.tmp#note index.tmp#message
Properties
content complex
Used by
Element workflow
Model
Children message, note
Instance
<activity category="" stamp="" status="">
  <note>{1,1}</note>
  <message>{1,1}</message>
</activity>
Attributes
QName Type Use Annotation
category restriction of xs:token required
Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), 
and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow 
general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).
stamp restriction of xs:token optional
Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename 
these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), 
but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values 
can be created. The included values represent a minimum of stamps that can be offered as default to all projects.
status restriction of xs:NCName required
Attribute status captures completion information on a particular process.
Source
<xs:element name="activity">
  <xs:annotation>
    <xs:documentation>Element activity captures information on a workflow category and/or stamp process and its completion status, as well as an activity note, and message to users about the completed workflow process.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element ref="note"/>
      <xs:element ref="message"/>
    </xs:choice>
    <xs:attributeGroup ref="attribute-category"/>
    <xs:attributeGroup ref="attribute-status"/>
    <xs:attribute name="stamp">
      <xs:annotation>
        <xs:documentation>Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values can be created. The included values represent a minimum of stamps that can be offered as default to all projects.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:token">
          <xs:enumeration value="niso:AO">
            <xs:annotation>
              <xs:documentation>Author's Original (AO)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:SMUR">
            <xs:annotation>
              <xs:documentation>Submitted Manuscript Under Review (SMUR)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:AM">
            <xs:annotation>
              <xs:documentation>Accepted Manuscript (AM)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:P">
            <xs:annotation>
              <xs:documentation>Proof (P)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:VoR">
            <xs:annotation>
              <xs:documentation>Version of Record (VoR)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:CVoR">
            <xs:annotation>
              <xs:documentation>Corrected Version of Record (CVoR)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="niso:EVoR">
            <xs:annotation>
              <xs:documentation>Enhanced Version of Record (EVoR)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:SUB">
            <xs:annotation>
              <xs:documentation>Submitted (SUB)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:RWT">
            <xs:annotation>
              <xs:documentation>Researched / Written / Tagged (RWT)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:REV">
            <xs:annotation>
              <xs:documentation>Revised (REV)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:RBV">
            <xs:annotation>
              <xs:documentation>Reviewed by Volume Author (RVB)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:CAS">
            <xs:annotation>
              <xs:documentation>Checked Against Sources (CAS)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:CFT">
            <xs:annotation>
              <xs:documentation>Checked for Tagging (CFT)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:CFB">
            <xs:annotation>
              <xs:documentation>Checked for Bibliographic Practices (CFB)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:PUB">
            <xs:annotation>
              <xs:documentation>Published (PUB)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:ENH">
            <xs:annotation>
              <xs:documentation>Enhanced (ENH)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:TC">
            <xs:annotation>
              <xs:documentation>Tag Cleanup (TC)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="orl:PUBR">
            <xs:annotation>
              <xs:documentation>Publication Readthrough (PUBR)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:cre">
            <xs:annotation>
              <xs:documentation>repository item created (original version of repository object) - equivalent to category created</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:dep">
            <xs:annotation>
              <xs:documentation>repository item deposited (an existing file) - equivalent to category deposited</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:cvr">
            <xs:annotation>
              <xs:documentation>object content edited - cvr (corrected version of record)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:evr">
            <xs:annotation>
              <xs:documentation>object content added evr (enhanced version of record)</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:ckd">
            <xs:annotation>
              <xs:documentation>Checked/corrected - equivalent to category checked</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:tag">
            <xs:annotation>
              <xs:documentation>tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to category tagged</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:rights_asg">
            <xs:annotation>
              <xs:documentation>Copyright/license terms attached to object - equivalent to category rights_assigned</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:pub">
            <xs:annotation>
              <xs:documentation>repository item under ongoing publishing procedures - equivalent to category published</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:rev">
            <xs:annotation>
              <xs:documentation>peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:wdr">
            <xs:annotation>
              <xs:documentation>Removed from published state - equivalent to category withdrawn</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
          <xs:enumeration value="cwrc:del">
            <xs:annotation>
              <xs:documentation>Deleted from the repository - equivalent to category deleted</xs:documentation>
            </xs:annotation>
          </xs:enumeration>
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>
[ top ]
Element note
Namespace No namespace
Annotations
Element note captures workflow notes for future reference of processes executed.
Diagram
Diagram
Type xs:string
Properties
content simple
Used by
Elements activity, assigned
Source
<xs:element name="note" type="xs:string">
  <xs:annotation>
    <xs:documentation>Element note captures workflow notes for future reference of processes executed.</xs:documentation>
  </xs:annotation>
</xs:element>
[ top ]
Element message
Namespace No namespace
Annotations
Element message captures notification messages to be sent to recipient users.  Contains recipients, a subject, and a body.
Diagram
Diagram index.tmp#recipient index.tmp#subject index.tmp#body
Properties
content complex
Used by
Elements activity, assigned
Model
Children body, recipient, subject
Instance
<message>
  <recipient userID="">{1,1}</recipient>
  <subject>{1,1}</subject>
  <body>{1,1}</body>
</message>
Source
<xs:element name="message">
  <xs:annotation>
    <xs:documentation>Element message captures notification messages to be sent to recipient users. Contains recipients, a subject, and a body.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element ref="recipient"/>
      <xs:element ref="subject"/>
      <xs:element ref="body"/>
    </xs:choice>
  </xs:complexType>
</xs:element>
[ top ]
Element recipient
Namespace No namespace
Annotations
To send a message to recipients, element recipient captures a user's ID in the element's @userID attribute.
Diagram
Diagram index.tmp#attribute-userID
Properties
content complex
Used by
Element message
Attributes
QName Type Use Annotation
userID xs:NCName required
User ID
Source
<xs:element name="recipient">
  <xs:annotation>
    <xs:documentation>To send a message to recipients, element recipient captures a user's ID in the element's @userID attribute.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attributeGroup ref="attribute-userID"/>
  </xs:complexType>
</xs:element>
[ top ]
Element subject
Namespace No namespace
Annotations
Message subject
Diagram
Diagram
Type xs:string
Properties
content simple
Used by
Element message
Source
<xs:element name="subject" type="xs:string">
  <xs:annotation>
    <xs:documentation>Message subject</xs:documentation>
  </xs:annotation>
</xs:element>
[ top ]
Element body
Namespace No namespace
Annotations
Message body
Diagram
Diagram
Type xs:string
Properties
content simple
Used by
Element message
Source
<xs:element name="body" type="xs:string">
  <xs:annotation>
    <xs:documentation>Message body</xs:documentation>
  </xs:annotation>
</xs:element>
[ top ]
Element assigned
Namespace No namespace
Annotations
Element assigned records message information to be sent to one or more assigned recipient users about the next
workflow step, as well as a note about the assigned activity.
Diagram
Diagram index.tmp#attribute-category index.tmp#assigned_process index.tmp#note index.tmp#message
Properties
content complex
Used by
Element workflow
Model
Children message, note
Instance
<assigned category="" process="">
  <note>{1,1}</note>
  <message>{1,1}</message>
</assigned>
Attributes
QName Type Use Annotation
category restriction of xs:token required
Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), 
and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow 
general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).
process xs:string optional
Some id used to trigger a process by some tool.
Source
<xs:element name="assigned">
  <xs:annotation>
    <xs:documentation>Element assigned records message information to be sent to one or more assigned recipient users about the next workflow step, as well as a note about the assigned activity.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element ref="note"/>
      <xs:element ref="message"/>
    </xs:choice>
    <xs:attributeGroup ref="attribute-category"/>
    <xs:attribute name="process" type="xs:string">
      <xs:annotation>
        <xs:documentation>Some id used to trigger a process by some tool.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
[ top ]
Attribute attribute-userID / @userID
Namespace No namespace
Annotations
User ID
Type xs:NCName
Properties
use required
Used by
Attribute Group attribute-userID
Source
<xs:attribute name="userID" use="required" type="xs:NCName">
  <xs:annotation>
    <xs:documentation>User ID</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-category / @category
Namespace No namespace
Annotations
Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), 
and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow 
general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).
Type restriction of xs:token
Properties
use required
Facets
enumeration created
created - repository item created (original version of repository object) - equivalent to cwrc:cre
enumeration deposited
deposited - repository item deposited (an existing file) - equivalent to stamp cwrc:dep
enumeration metadata_contribution
metadata_contribution - repository object metadata (external or embedded) created or edited - equivalent to stamp cwrc:evr (enhanced version of record)
enumeration content_contribution
content_contribution - repository object content added or edited - equivalent to stamp cwrc:evr (enhanced version of record) or cvr (corrected version of record)
enumeration checked
checked - Checked/corrected - equivalent to stamp cwrc:ckd
enumeration machine_processed
machine_processed - Automatic processing of data - equivalent to stamps cwrc:evr (enhanced version of record) or cwrc:cvr (corrected version of record)
enumeration user-tagged
user-tagged - tagged by member of general public (i.e. subject keywords/ folksonomic descriptors  added) - equivalent to stamp cwrc:tag
enumeration rights_assigned
rights_assigned - Copyright/license terms attached to object - equivalent to stamp cwrc:rights_asg
enumeration published
published - repository item under ongoing publishing procedures - equivalent to stamp cwrc:pub
enumeration peer-reviewed/evaluated
peer_reviewed - peer-review as opposed to internal editing/revision - equivalent to stamp cwrc:rev
enumeration withdrawn
withdrawn - Removed from published state - equivalent to stamp cwrc:wdr
enumeration deleted
deleted - Deleted from the repository - equivalent to stamp cwrc:del
Used by
Attribute Group attribute-category
Source
<xs:attribute name="category" use="required">
  <xs:annotation>
    <xs:documentation>Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:token">
      <xs:enumeration value="created">
        <xs:annotation>
          <xs:documentation>created - repository item created (original version of repository object) - equivalent to cwrc:cre</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="deposited">
        <xs:annotation>
          <xs:documentation>deposited - repository item deposited (an existing file) - equivalent to stamp cwrc:dep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="metadata_contribution">
        <xs:annotation>
          <xs:documentation>metadata_contribution - repository object metadata (external or embedded) created or edited - equivalent to stamp cwrc:evr (enhanced version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="content_contribution">
        <xs:annotation>
          <xs:documentation>content_contribution - repository object content added or edited - equivalent to stamp cwrc:evr (enhanced version of record) or cvr (corrected version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="checked">
        <xs:annotation>
          <xs:documentation>checked - Checked/corrected - equivalent to stamp cwrc:ckd</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="machine_processed">
        <xs:annotation>
          <xs:documentation>machine_processed - Automatic processing of data - equivalent to stamps cwrc:evr (enhanced version of record) or cwrc:cvr (corrected version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="user-tagged">
        <xs:annotation>
          <xs:documentation>user-tagged - tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to stamp cwrc:tag</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="rights_assigned">
        <xs:annotation>
          <xs:documentation>rights_assigned - Copyright/license terms attached to object - equivalent to stamp cwrc:rights_asg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="published">
        <xs:annotation>
          <xs:documentation>published - repository item under ongoing publishing procedures - equivalent to stamp cwrc:pub</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="peer-reviewed/evaluated">
        <xs:annotation>
          <xs:documentation>peer_reviewed - peer-review as opposed to internal editing/revision - equivalent to stamp cwrc:rev</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="withdrawn">
        <xs:annotation>
          <xs:documentation>withdrawn - Removed from published state - equivalent to stamp cwrc:wdr</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="deleted">
        <xs:annotation>
          <xs:documentation>deleted - Deleted from the repository - equivalent to stamp cwrc:del</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>
[ top ]
Attribute attribute-status / @status
Namespace No namespace
Annotations
Attribute status captures completion information on a particular process.
Type restriction of xs:NCName
Properties
use required
Facets
enumeration c
Complete
enumeration ipr
In Progress
enumeration p
Pending
enumeration i
Incomplete
Used by
Attribute Group attribute-status
Source
<xs:attribute name="status" use="required">
  <xs:annotation>
    <xs:documentation>Attribute status captures completion information on a particular process.</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:NCName">
      <xs:enumeration value="c">
        <xs:annotation>
          <xs:documentation>Complete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ipr">
        <xs:annotation>
          <xs:documentation>In Progress</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="p">
        <xs:annotation>
          <xs:documentation>Pending</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="i">
        <xs:annotation>
          <xs:documentation>Incomplete</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>
[ top ]
Attribute activity / @stamp
Namespace No namespace
Annotations
Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename 
these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), 
but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values 
can be created. The included values represent a minimum of stamps that can be offered as default to all projects.
Type restriction of xs:token
Properties
content simple
Facets
enumeration niso:AO
Author's Original (AO)
enumeration niso:SMUR
Submitted Manuscript Under Review (SMUR)
enumeration niso:AM
Accepted Manuscript (AM)
enumeration niso:P
Proof (P)
enumeration niso:VoR
Version of Record (VoR)
enumeration niso:CVoR
Corrected Version of Record (CVoR)
enumeration niso:EVoR
Enhanced Version of Record (EVoR)
enumeration orl:SUB
Submitted (SUB)
enumeration orl:RWT
Researched / Written / Tagged (RWT)
enumeration orl:REV
Revised (REV)
enumeration orl:RBV
Reviewed by Volume Author (RVB)
enumeration orl:CAS
Checked Against Sources (CAS)
enumeration orl:CFT
Checked for Tagging (CFT)
enumeration orl:CFB
Checked for Bibliographic Practices (CFB)
enumeration orl:PUB
Published (PUB)
enumeration orl:ENH
Enhanced (ENH)
enumeration orl:TC
Tag Cleanup (TC)
enumeration orl:PUBR
Publication Readthrough (PUBR)
enumeration cwrc:cre
repository item created (original version of repository object) - equivalent to category created
enumeration cwrc:dep
repository item deposited (an existing file) - equivalent to category deposited
enumeration cwrc:cvr
object content edited - cvr (corrected version of record)
enumeration cwrc:evr
object content added evr (enhanced version of record)
enumeration cwrc:ckd
Checked/corrected - equivalent to category checked
enumeration cwrc:tag
tagged by member of general public (i.e. subject keywords/ folksonomic descriptors  added) - equivalent to category tagged
enumeration cwrc:rights_asg
Copyright/license terms attached to object - equivalent to category rights_assigned
enumeration cwrc:pub
repository item under ongoing publishing procedures - equivalent to category published
enumeration cwrc:rev
peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated
enumeration cwrc:wdr
Removed from published state - equivalent to category withdrawn
enumeration cwrc:del
Deleted from the repository - equivalent to category deleted
Used by
Element activity
Source
<xs:attribute name="stamp">
  <xs:annotation>
    <xs:documentation>Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values can be created. The included values represent a minimum of stamps that can be offered as default to all projects.</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:token">
      <xs:enumeration value="niso:AO">
        <xs:annotation>
          <xs:documentation>Author's Original (AO)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:SMUR">
        <xs:annotation>
          <xs:documentation>Submitted Manuscript Under Review (SMUR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:AM">
        <xs:annotation>
          <xs:documentation>Accepted Manuscript (AM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:P">
        <xs:annotation>
          <xs:documentation>Proof (P)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:VoR">
        <xs:annotation>
          <xs:documentation>Version of Record (VoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:CVoR">
        <xs:annotation>
          <xs:documentation>Corrected Version of Record (CVoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:EVoR">
        <xs:annotation>
          <xs:documentation>Enhanced Version of Record (EVoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:SUB">
        <xs:annotation>
          <xs:documentation>Submitted (SUB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:RWT">
        <xs:annotation>
          <xs:documentation>Researched / Written / Tagged (RWT)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:REV">
        <xs:annotation>
          <xs:documentation>Revised (REV)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:RBV">
        <xs:annotation>
          <xs:documentation>Reviewed by Volume Author (RVB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CAS">
        <xs:annotation>
          <xs:documentation>Checked Against Sources (CAS)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CFT">
        <xs:annotation>
          <xs:documentation>Checked for Tagging (CFT)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CFB">
        <xs:annotation>
          <xs:documentation>Checked for Bibliographic Practices (CFB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:PUB">
        <xs:annotation>
          <xs:documentation>Published (PUB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:ENH">
        <xs:annotation>
          <xs:documentation>Enhanced (ENH)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:TC">
        <xs:annotation>
          <xs:documentation>Tag Cleanup (TC)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:PUBR">
        <xs:annotation>
          <xs:documentation>Publication Readthrough (PUBR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:cre">
        <xs:annotation>
          <xs:documentation>repository item created (original version of repository object) - equivalent to category created</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:dep">
        <xs:annotation>
          <xs:documentation>repository item deposited (an existing file) - equivalent to category deposited</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:cvr">
        <xs:annotation>
          <xs:documentation>object content edited - cvr (corrected version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:evr">
        <xs:annotation>
          <xs:documentation>object content added evr (enhanced version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:ckd">
        <xs:annotation>
          <xs:documentation>Checked/corrected - equivalent to category checked</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:tag">
        <xs:annotation>
          <xs:documentation>tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to category tagged</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:rights_asg">
        <xs:annotation>
          <xs:documentation>Copyright/license terms attached to object - equivalent to category rights_assigned</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:pub">
        <xs:annotation>
          <xs:documentation>repository item under ongoing publishing procedures - equivalent to category published</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:rev">
        <xs:annotation>
          <xs:documentation>peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:wdr">
        <xs:annotation>
          <xs:documentation>Removed from published state - equivalent to category withdrawn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:del">
        <xs:annotation>
          <xs:documentation>Deleted from the repository - equivalent to category deleted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>
[ top ]
Attribute assigned / @process
Namespace No namespace
Annotations
Some id used to trigger a process by some tool.
Type xs:string
Properties
content simple
Used by
Element assigned
Source
<xs:attribute name="process" type="xs:string">
  <xs:annotation>
    <xs:documentation>Some id used to trigger a process by some tool.</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-date / @date
Namespace No namespace
Annotations
Date format in the form of YYYY-MM-DD
Type xs:date
Properties
use required
Used by
Attribute Group attribute-date
Source
<xs:attribute name="date" use="required" type="xs:date">
  <xs:annotation>
    <xs:documentation>Date format in the form of YYYY-MM-DD</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute workflow / @time
Namespace No namespace
Annotations
Time format in the form of hh:mm:ss.  Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT
Type xs:time
Properties
content simple
Used by
Element workflow
Source
<xs:attribute name="time" type="xs:time">
  <xs:annotation>
    <xs:documentation>Time format in the form of hh:mm:ss. Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute workflow / @workflowID
Namespace No namespace
Annotations
Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.
Type xs:string
Properties
content simple
Used by
Element workflow
Source
<xs:attribute name="workflowID" type="xs:string">
  <xs:annotation>
    <xs:documentation>Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute workflow / @toolID
Namespace No namespace
Annotations
Tool ID
Type xs:NCName
Properties
content simple
Used by
Element workflow
Source
<xs:attribute name="toolID" type="xs:NCName">
  <xs:annotation>
    <xs:documentation>Tool ID</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-time / @time
Namespace No namespace
Annotations
Time format in the form of hh:mm:ss.  Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT
Type xs:time
Properties
use required
Used by
Attribute Group attribute-time
Source
<xs:attribute name="time" use="required" type="xs:time">
  <xs:annotation>
    <xs:documentation>Time format in the form of hh:mm:ss. Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-workflowID / @workflowID
Namespace No namespace
Annotations
Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.
Type xs:string
Properties
use required
Used by
Attribute Group attribute-workflowID
Source
<xs:attribute name="workflowID" use="required" type="xs:string">
  <xs:annotation>
    <xs:documentation>Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-toolID / @toolID
Namespace No namespace
Annotations
Tool ID
Type xs:NCName
Properties
use required
Used by
Attribute Group attribute-toolID
Source
<xs:attribute name="toolID" use="required" type="xs:NCName">
  <xs:annotation>
    <xs:documentation>Tool ID</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-process / @process
Namespace No namespace
Annotations
Some id used to trigger a process by some tool.
Type xs:string
Properties
use required
Used by
Attribute Group attribute-process
Source
<xs:attribute name="process" use="required" type="xs:string">
  <xs:annotation>
    <xs:documentation>Some id used to trigger a process by some tool.</xs:documentation>
  </xs:annotation>
</xs:attribute>
[ top ]
Attribute attribute-stamp / @stamp
Namespace No namespace
Annotations
Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename 
these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), 
but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values 
can be created. The included values represent a minimum of stamps that can be offered as default to all projects.
Type restriction of xs:token
Properties
use required
Facets
enumeration niso:AO
Author's Original (AO)
enumeration niso:SMUR
Submitted Manuscript Under Review (SMUR)
enumeration niso:AM
Accepted Manuscript (AM)
enumeration niso:P
Proof (P)
enumeration niso:VoR
Version of Record (VoR)
enumeration niso:CVoR
Corrected Version of Record (CVoR)
enumeration niso:EVoR
Enhanced Version of Record (EVoR)
enumeration orl:SUB
Submitted (SUB)
enumeration orl:RWT
Researched / Written / Tagged (RWT)
enumeration orl:REV
Revised (REV)
enumeration orl:RBV
Reviewed by Volume Author (RVB)
enumeration orl:CAS
Checked Against Sources (CAS)
enumeration orl:CFT
Checked for Tagging (CFT)
enumeration orl:CFB
Checked for Bibliographic Practices (CFB)
enumeration orl:PUB
Published (PUB)
enumeration orl:ENH
Enhanced (ENH)
enumeration orl:TC
Tag Cleanup (TC)
enumeration orl:PUBR
Publication Readthrough (PUBR)
enumeration cwrc:cre
repository item created (original version of repository object) - equivalent to category created
enumeration cwrc:dep
repository item deposited (an existing file) - equivalent to category deposited
enumeration cwrc:cvr
object content edited - cvr (corrected version of record)
enumeration cwrc:evr
object content added evr (enhanced version of record)
enumeration cwrc:ckd
Checked/corrected - equivalent to category checked
enumeration cwrc:tag
tagged by member of general public (i.e. subject keywords/ folksonomic descriptors  added) - equivalent to category tagged
enumeration cwrc:rights_asg
Copyright/license terms attached to object - equivalent to category rights_assigned
enumeration cwrc:pub
repository item under ongoing publishing procedures - equivalent to category published
enumeration cwrc:rev
peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated
enumeration cwrc:wdr
Removed from published state - equivalent to category withdrawn
enumeration cwrc:del
Deleted from the repository - equivalent to category deleted
Used by
Attribute Group attribute-stamp
Source
<xs:attribute name="stamp" use="required">
  <xs:annotation>
    <xs:documentation>Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values can be created. The included values represent a minimum of stamps that can be offered as default to all projects.</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:token">
      <xs:enumeration value="niso:AO">
        <xs:annotation>
          <xs:documentation>Author's Original (AO)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:SMUR">
        <xs:annotation>
          <xs:documentation>Submitted Manuscript Under Review (SMUR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:AM">
        <xs:annotation>
          <xs:documentation>Accepted Manuscript (AM)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:P">
        <xs:annotation>
          <xs:documentation>Proof (P)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:VoR">
        <xs:annotation>
          <xs:documentation>Version of Record (VoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:CVoR">
        <xs:annotation>
          <xs:documentation>Corrected Version of Record (CVoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="niso:EVoR">
        <xs:annotation>
          <xs:documentation>Enhanced Version of Record (EVoR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:SUB">
        <xs:annotation>
          <xs:documentation>Submitted (SUB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:RWT">
        <xs:annotation>
          <xs:documentation>Researched / Written / Tagged (RWT)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:REV">
        <xs:annotation>
          <xs:documentation>Revised (REV)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:RBV">
        <xs:annotation>
          <xs:documentation>Reviewed by Volume Author (RVB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CAS">
        <xs:annotation>
          <xs:documentation>Checked Against Sources (CAS)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CFT">
        <xs:annotation>
          <xs:documentation>Checked for Tagging (CFT)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:CFB">
        <xs:annotation>
          <xs:documentation>Checked for Bibliographic Practices (CFB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:PUB">
        <xs:annotation>
          <xs:documentation>Published (PUB)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:ENH">
        <xs:annotation>
          <xs:documentation>Enhanced (ENH)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:TC">
        <xs:annotation>
          <xs:documentation>Tag Cleanup (TC)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="orl:PUBR">
        <xs:annotation>
          <xs:documentation>Publication Readthrough (PUBR)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:cre">
        <xs:annotation>
          <xs:documentation>repository item created (original version of repository object) - equivalent to category created</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:dep">
        <xs:annotation>
          <xs:documentation>repository item deposited (an existing file) - equivalent to category deposited</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:cvr">
        <xs:annotation>
          <xs:documentation>object content edited - cvr (corrected version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:evr">
        <xs:annotation>
          <xs:documentation>object content added evr (enhanced version of record)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:ckd">
        <xs:annotation>
          <xs:documentation>Checked/corrected - equivalent to category checked</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:tag">
        <xs:annotation>
          <xs:documentation>tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to category tagged</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:rights_asg">
        <xs:annotation>
          <xs:documentation>Copyright/license terms attached to object - equivalent to category rights_assigned</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:pub">
        <xs:annotation>
          <xs:documentation>repository item under ongoing publishing procedures - equivalent to category published</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:rev">
        <xs:annotation>
          <xs:documentation>peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:wdr">
        <xs:annotation>
          <xs:documentation>Removed from published state - equivalent to category withdrawn</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="cwrc:del">
        <xs:annotation>
          <xs:documentation>Deleted from the repository - equivalent to category deleted</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>
[ top ]
Attribute Group attribute-userID
Namespace No namespace
Diagram
Diagram index.tmp#attribute-userID_userID
Used by
Elements recipient, workflow
Attributes
QName Type Use Annotation
userID xs:NCName required
User ID
Source
<xs:attributeGroup name="attribute-userID">
  <xs:attribute name="userID" use="required" type="xs:NCName">
    <xs:annotation>
      <xs:documentation>User ID</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-category
Namespace No namespace
Diagram
Diagram index.tmp#attribute-category_category
Used by
Elements activity, assigned
Attributes
QName Type Use Annotation
category restriction of xs:token required
Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), 
and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow 
general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).
Source
<xs:attributeGroup name="attribute-category">
  <xs:attribute name="category" use="required">
    <xs:annotation>
      <xs:documentation>Activity categories or ‘primitives’ put together during workflow meetings in October 2010 (re: SB, SF, MP meeting on workflow values), and revised in November 2011 (MP). The categories are meant to represent a set of constant values to be used across projects to allow workflow general procedures to be applied to objects CWRC-wide without restricting workflow stamps (see stamp attribute).</xs:documentation>
    </xs:annotation>
    <xs:simpleType>
      <xs:restriction base="xs:token">
        <xs:enumeration value="created">
          <xs:annotation>
            <xs:documentation>created - repository item created (original version of repository object) - equivalent to cwrc:cre</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="deposited">
          <xs:annotation>
            <xs:documentation>deposited - repository item deposited (an existing file) - equivalent to stamp cwrc:dep</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="metadata_contribution">
          <xs:annotation>
            <xs:documentation>metadata_contribution - repository object metadata (external or embedded) created or edited - equivalent to stamp cwrc:evr (enhanced version of record)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="content_contribution">
          <xs:annotation>
            <xs:documentation>content_contribution - repository object content added or edited - equivalent to stamp cwrc:evr (enhanced version of record) or cvr (corrected version of record)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="checked">
          <xs:annotation>
            <xs:documentation>checked - Checked/corrected - equivalent to stamp cwrc:ckd</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="machine_processed">
          <xs:annotation>
            <xs:documentation>machine_processed - Automatic processing of data - equivalent to stamps cwrc:evr (enhanced version of record) or cwrc:cvr (corrected version of record)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="user-tagged">
          <xs:annotation>
            <xs:documentation>user-tagged - tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to stamp cwrc:tag</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="rights_assigned">
          <xs:annotation>
            <xs:documentation>rights_assigned - Copyright/license terms attached to object - equivalent to stamp cwrc:rights_asg</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="published">
          <xs:annotation>
            <xs:documentation>published - repository item under ongoing publishing procedures - equivalent to stamp cwrc:pub</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="peer-reviewed/evaluated">
          <xs:annotation>
            <xs:documentation>peer_reviewed - peer-review as opposed to internal editing/revision - equivalent to stamp cwrc:rev</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="withdrawn">
          <xs:annotation>
            <xs:documentation>withdrawn - Removed from published state - equivalent to stamp cwrc:wdr</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="deleted">
          <xs:annotation>
            <xs:documentation>deleted - Deleted from the repository - equivalent to stamp cwrc:del</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
      </xs:restriction>
    </xs:simpleType>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-status
Namespace No namespace
Diagram
Diagram index.tmp#attribute-status_status
Used by
Element activity
Attributes
QName Type Use Annotation
status restriction of xs:NCName required
Attribute status captures completion information on a particular process.
Source
<xs:attributeGroup name="attribute-status">
  <xs:attribute name="status" use="required">
    <xs:annotation>
      <xs:documentation>Attribute status captures completion information on a particular process.</xs:documentation>
    </xs:annotation>
    <xs:simpleType>
      <xs:restriction base="xs:NCName">
        <xs:enumeration value="c">
          <xs:annotation>
            <xs:documentation>Complete</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="ipr">
          <xs:annotation>
            <xs:documentation>In Progress</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="p">
          <xs:annotation>
            <xs:documentation>Pending</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="i">
          <xs:annotation>
            <xs:documentation>Incomplete</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
      </xs:restriction>
    </xs:simpleType>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-date
Namespace No namespace
Diagram
Diagram index.tmp#attribute-date_date
Used by
Element workflow
Attributes
QName Type Use Annotation
date xs:date required
Date format in the form of YYYY-MM-DD
Source
<xs:attributeGroup name="attribute-date">
  <xs:attribute name="date" use="required" type="xs:date">
    <xs:annotation>
      <xs:documentation>Date format in the form of YYYY-MM-DD</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-time
Namespace No namespace
Diagram
Diagram index.tmp#attribute-time_time
Attributes
QName Type Use Annotation
time xs:time required
Time format in the form of hh:mm:ss.  Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT
Source
<xs:attributeGroup name="attribute-time">
  <xs:attribute name="time" use="required" type="xs:time">
    <xs:annotation>
      <xs:documentation>Time format in the form of hh:mm:ss. Note: can append an optional timezone offset to the time value: -07:00 for MST, and -06:00 for MDT</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-workflowID
Namespace No namespace
Diagram
Diagram index.tmp#attribute-workflowID_workflowID
Attributes
QName Type Use Annotation
workflowID xs:string required
Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.
Source
<xs:attributeGroup name="attribute-workflowID">
  <xs:attribute name="workflowID" use="required" type="xs:string">
    <xs:annotation>
      <xs:documentation>Attribute workflowID captures a string that identifies a particular workflow (set of processes to be tracked by workflow system) defined by users.</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-toolID
Namespace No namespace
Diagram
Diagram index.tmp#attribute-toolID_toolID
Attributes
QName Type Use Annotation
toolID xs:NCName required
Tool ID
Source
<xs:attributeGroup name="attribute-toolID">
  <xs:attribute name="toolID" use="required" type="xs:NCName">
    <xs:annotation>
      <xs:documentation>Tool ID</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-process
Namespace No namespace
Diagram
Diagram index.tmp#attribute-process_process
Attributes
QName Type Use Annotation
process xs:string required
Some id used to trigger a process by some tool.
Source
<xs:attributeGroup name="attribute-process">
  <xs:attribute name="process" use="required" type="xs:string">
    <xs:annotation>
      <xs:documentation>Some id used to trigger a process by some tool.</xs:documentation>
    </xs:annotation>
  </xs:attribute>
</xs:attributeGroup>
[ top ]
Attribute Group attribute-stamp
Namespace No namespace
Diagram
Diagram index.tmp#attribute-stamp_stamp
Attributes
QName Type Use Annotation
stamp restriction of xs:token required
Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename 
these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), 
but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values 
can be created. The included values represent a minimum of stamps that can be offered as default to all projects.
Source
<xs:attributeGroup name="attribute-stamp">
  <xs:attribute name="stamp" use="required">
    <xs:annotation>
      <xs:documentation>Activity types or stamps. These finer categories can be created on a project-specific basis, and particular projects may wish to rename these categories (i.e. Orlando may want to have ‘cas’ instead of ‘ckd’, another project may want to give it a stamp that according to a French name), but the basic activities categories (primitives) should stay the same. NOTE: the values in the Activity type column are not exhaustive--more values can be created. The included values represent a minimum of stamps that can be offered as default to all projects.</xs:documentation>
    </xs:annotation>
    <xs:simpleType>
      <xs:restriction base="xs:token">
        <xs:enumeration value="niso:AO">
          <xs:annotation>
            <xs:documentation>Author's Original (AO)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:SMUR">
          <xs:annotation>
            <xs:documentation>Submitted Manuscript Under Review (SMUR)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:AM">
          <xs:annotation>
            <xs:documentation>Accepted Manuscript (AM)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:P">
          <xs:annotation>
            <xs:documentation>Proof (P)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:VoR">
          <xs:annotation>
            <xs:documentation>Version of Record (VoR)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:CVoR">
          <xs:annotation>
            <xs:documentation>Corrected Version of Record (CVoR)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="niso:EVoR">
          <xs:annotation>
            <xs:documentation>Enhanced Version of Record (EVoR)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:SUB">
          <xs:annotation>
            <xs:documentation>Submitted (SUB)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:RWT">
          <xs:annotation>
            <xs:documentation>Researched / Written / Tagged (RWT)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:REV">
          <xs:annotation>
            <xs:documentation>Revised (REV)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:RBV">
          <xs:annotation>
            <xs:documentation>Reviewed by Volume Author (RVB)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:CAS">
          <xs:annotation>
            <xs:documentation>Checked Against Sources (CAS)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:CFT">
          <xs:annotation>
            <xs:documentation>Checked for Tagging (CFT)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:CFB">
          <xs:annotation>
            <xs:documentation>Checked for Bibliographic Practices (CFB)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:PUB">
          <xs:annotation>
            <xs:documentation>Published (PUB)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:ENH">
          <xs:annotation>
            <xs:documentation>Enhanced (ENH)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:TC">
          <xs:annotation>
            <xs:documentation>Tag Cleanup (TC)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="orl:PUBR">
          <xs:annotation>
            <xs:documentation>Publication Readthrough (PUBR)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:cre">
          <xs:annotation>
            <xs:documentation>repository item created (original version of repository object) - equivalent to category created</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:dep">
          <xs:annotation>
            <xs:documentation>repository item deposited (an existing file) - equivalent to category deposited</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:cvr">
          <xs:annotation>
            <xs:documentation>object content edited - cvr (corrected version of record)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:evr">
          <xs:annotation>
            <xs:documentation>object content added evr (enhanced version of record)</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:ckd">
          <xs:annotation>
            <xs:documentation>Checked/corrected - equivalent to category checked</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:tag">
          <xs:annotation>
            <xs:documentation>tagged by member of general public (i.e. subject keywords/ folksonomic descriptors added) - equivalent to category tagged</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:rights_asg">
          <xs:annotation>
            <xs:documentation>Copyright/license terms attached to object - equivalent to category rights_assigned</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:pub">
          <xs:annotation>
            <xs:documentation>repository item under ongoing publishing procedures - equivalent to category published</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:rev">
          <xs:annotation>
            <xs:documentation>peer-review as opposed to internal editing/revision - equivalent to category peer-reviewed/evaluated</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:wdr">
          <xs:annotation>
            <xs:documentation>Removed from published state - equivalent to category withdrawn</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
        <xs:enumeration value="cwrc:del">
          <xs:annotation>
            <xs:documentation>Deleted from the repository - equivalent to category deleted</xs:documentation>
          </xs:annotation>
        </xs:enumeration>
      </xs:restriction>
    </xs:simpleType>
  </xs:attribute>
</xs:attributeGroup>
[ top ]