XML Schema Documentation

Schema Document Properties

Target Namespacehttp://www.setasign.com/Konquadrat/Workflow
Element and Attribute Namespaces
  • Global element and attribute declarations belong to this schema's target namespace.
  • By default, local element declarations belong to this schema's target namespace.
  • By default, local attribute declarations have no namespace.
No documentation provided.
PrefixNamespace
Default namespacehttp://www.setasign.com/Konquadrat/Workflow
xmlhttp://www.w3.org/XML/1998/namespace
xsdhttp://www.w3.org/2001/XMLSchema
<xsd:schema targetNamespace="http://www.setasign.com/Konquadrat/Workflow" elementFormDefault="qualified">
...
</xsd:schema>

Global Declarations

Element: workflow

Nameworkflow
TypeLocally-defined complex type
Nillableno
Abstractno
No documentation provided.
<workflow
 id="xsd:string" [1]
>
   <descriptions   > [0..1] 
      <description> multiLangString </description> [0..*]
   </descriptions>
   <step> step </step> [1..*]
</workflow>
<xsd:element name="workflow">
   <xsd:complexType>
      <xsd:sequence>
         <xsd:element name="descriptions" minOccurs="0">
            <xsd:complexType>
               <xsd:sequence>
                  <xsd:element name="description" type="multiLangString" minOccurs="0" maxOccurs="unbounded"/>
               </xsd:sequence>
            </xsd:complexType>
         </xsd:element>
         <xsd:element name="step" type="step" maxOccurs="unbounded"/>
      </xsd:sequence>
      <xsd:attribute name="id" type="xsd:string" use="required"/>
   </xsd:complexType>
</xsd:element>

Global Definitions

Complex Type: argument

Super-types:None
Sub-types:
Nameargument
Abstractno
No documentation provided.
<...>
   <!-- Mixed content -->
   Start Choice [0..1]
      <value> value </value> [1]
      <object> object </object> [1]
      <helper> helper </helper> [1]
      <null> ... </null> [1]
      <true> ... </true> [1]
      <false> ... </false> [1]
      <array> array </array> [1]
      <datetime> argument </datetime> [1]
   End Choice
</...>
<xsd:complexType name="argument" mixed="true">
   <xsd:sequence>
      <xsd:choice minOccurs="0">
         <xsd:element name="value" type="value"/>
         <xsd:element name="object" type="object"/>
         <xsd:element name="helper" type="helper"/>
         <xsd:element name="null"/>
         <xsd:element name="true"/>
         <xsd:element name="false"/>
         <xsd:element name="array" type="array"/>
         <xsd:element name="datetime" type="argument"/>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: array

Super-types:None
Sub-types:None
Namearray
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <value> argument </value> [1]
      <param> argument </param> [1]
   End Choice
</...>
<xsd:complexType name="array">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="value" type="argument"/>
         <xsd:element name="param" type="argument"/>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: condition

Super-types:None
Sub-types:None
Namecondition
Abstractno
No documentation provided.
<...>
   <if> ifCondition </if> [1]
   <then> element </then> [1]
   <else> element </else> [0..1]
</...>
<xsd:complexType name="condition">
   <xsd:sequence>
      <xsd:element name="if" type="ifCondition"/>
      <xsd:element name="then" type="element"/>
      <xsd:element name="else" type="element" minOccurs="0"/>
   </xsd:sequence>
</xsd:complexType>

Complex Type: currentStep

Super-types:None
Sub-types:None
NamecurrentStep
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <target> target </target> [1]
      <submit> ... </submit> [1]
      <condition      > [1] 
         <if> ifCondition </if> [1]
         <then> currentStep </then> [1]
         <else> currentStep </else> [0..1]
      </condition>
   End Choice
</...>
<xsd:complexType name="currentStep">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="target" type="target"/>
         <xsd:element name="submit"/>
         <xsd:element name="condition">
            <xsd:complexType>
               <xsd:sequence>
                  <xsd:element name="if" type="ifCondition"/>
                  <xsd:element name="then" type="currentStep"/>
                  <xsd:element name="else" type="currentStep" minOccurs="0"/>
               </xsd:sequence>
            </xsd:complexType>
         </xsd:element>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: element

Super-types:None
Sub-types:None
Nameelement
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <object> object </object> [1]
      <helper> helper </helper> [1]
      <html> html </html> [1]
      <condition> condition </condition> [1]
   End Choice
</...>
<xsd:complexType name="element">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="object" type="object"/>
         <xsd:element name="helper" type="helper"/>
         <xsd:element name="html" type="html"/>
         <xsd:element name="condition" type="condition"/>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: equals

Super-types:None
Sub-types:None
Nameequals
Abstractno
No documentation provided.
<...
 strict="boolean" [0..1]
>
   Start Choice [0..*]
      <param> argument </param> [1]
      <arg> argument </arg> [1]
   End Choice
</...>
<xsd:complexType name="equals">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="param" type="argument"/>
         <xsd:element name="arg" type="argument"/>
      </xsd:choice>
   </xsd:sequence>
   <xsd:attribute name="strict" type="boolean" default="false"/>
</xsd:complexType>

Complex Type: helper

Super-types:None
Sub-types:None
Namehelper
Abstractno
No documentation provided.
<...
 id="xsd:string" [0..1]
 ref="xsd:string" [0..1] 
 className="xsd:string" [0..1]
 type="xsd:string" [0..1]
 name="xsd:string" [0..1]
>
   Start Choice [0..*]
      <method> method </method> [1]
      <property> property </property> [1]
      <html> html </html> [1]
   End Choice
</...>
<xsd:complexType name="helper">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="method" type="method"/>
         <xsd:element name="property" type="property"/>
         <xsd:element name="html" type="html"/>
      </xsd:choice>
   </xsd:sequence>
   <xsd:attribute name="id" type="xsd:string"/>
   <xsd:attribute name="ref" type="xsd:string"/>
   <xsd:attribute name="className" type="xsd:string"/>
   <xsd:attribute name="type" type="xsd:string"/>
   <xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>

Complex Type: html

Super-types:xsd:normalizedString < html (by extension)
Sub-types:None
No documentation provided.
<...
 template="xsd:string" [0..1]
>
    xsd:normalizedString
</...>
<xsd:complexType name="html">
   <xsd:simpleContent>
      <xsd:extension base="xsd:normalizedString">
         <xsd:attribute name="template" type="xsd:string"/>
      </xsd:extension>
   </xsd:simpleContent>
</xsd:complexType>

Complex Type: ifCondition

Super-types:None
Sub-types:None
NameifCondition
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <true> argument </true> [1]
      <false> argument </false> [1]
      <and> ifCondition </and> [1]
      <or> ifCondition </or> [1]
      <not> ifCondition </not> [1]
      <equals> equals </equals> [1]
   End Choice
</...>
<xsd:complexType name="ifCondition">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="true" type="argument"/>
         <xsd:element name="false" type="argument"/>
         <xsd:element name="and" type="ifCondition"/>
         <xsd:element name="or" type="ifCondition"/>
         <xsd:element name="not" type="ifCondition"/>
         <xsd:element name="equals" type="equals"/>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: method

Super-types:argument < method (by extension)
Sub-types:None
Namemethod
Abstractno
No documentation provided.
<...
 name="xsd:string" [1]
 scope="xsd:string" [0..1]
>
   <!-- Mixed content -->
   Start Choice [0..1]
      <value> value </value> [1]
      <object> object </object> [1]
      <helper> helper </helper> [1]
      <null> ... </null> [1]
      <true> ... </true> [1]
      <false> ... </false> [1]
      <array> array </array> [1]
      <datetime> argument </datetime> [1]
   End Choice
   Start Choice [0..*]
      <param> argument </param> [1]
      <arg> argument </arg> [1]
   End Choice
</...>
<xsd:complexType name="method">
   <xsd:complexContent mixed="true">
      <xsd:extension base="argument">
         <xsd:sequence>
            <xsd:choice minOccurs="0" maxOccurs="unbounded">
               <xsd:element name="param" type="argument"/>
               <xsd:element name="arg" type="argument"/>
            </xsd:choice>
         </xsd:sequence>
         <xsd:attribute name="name" type="xsd:string" use="required"/>
         <xsd:attribute name="scope" type="xsd:string"/>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>

Complex Type: multiLangString

Super-types:xsd:normalizedString < multiLangString (by extension)
Sub-types:None
NamemultiLangString
Abstractno
No documentation provided.
<...
 lang="xsd:string (length = 2)" [0..1]
>
    xsd:normalizedString
</...>
<xsd:complexType name="multiLangString">
   <xsd:simpleContent>
      <xsd:extension base="xsd:normalizedString">
         <xsd:attribute name="lang">
            <xsd:simpleType>
               <xsd:restriction base="xsd:string">
                  <xsd:length value="2"/>
               </xsd:restriction>
            </xsd:simpleType>
         </xsd:attribute>
      </xsd:extension>
   </xsd:simpleContent>
</xsd:complexType>

Complex Type: navigation

Super-types:None
Sub-types:None
Namenavigation
Abstractno
No documentation provided.
<...>
Start All [1]

<previousStep> previousStep </previousStep> [0..1] <currentStep> currentStep </currentStep> [0..1] <nextStep> nextStep </nextStep> [0..1] End All

</...>
<xsd:complexType name="navigation">
   <xsd:all>
      <xsd:element name="previousStep" type="previousStep" minOccurs="0"/>
      <xsd:element name="currentStep" type="currentStep" minOccurs="0"/>
      <xsd:element name="nextStep" type="nextStep" minOccurs="0"/>
   </xsd:all>
</xsd:complexType>

Complex Type: nextStep

Super-types:None
Sub-types:None
NamenextStep
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <buttonText> multiLangString </buttonText> [1]
      <target> target </target> [1]
      <condition      > [1] 
         <if> ifCondition </if> [1]
         <then> nextStep </then> [1]
         <else> nextStep </else> [0..1]
      </condition>
   End Choice
</...>
<xsd:complexType name="nextStep">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="buttonText" type="multiLangString"/>
         <xsd:element name="target" type="target"/>
         <xsd:element name="condition">
            <xsd:complexType>
               <xsd:sequence>
                  <xsd:element name="if" type="ifCondition"/>
                  <xsd:element name="then" type="nextStep"/>
                  <xsd:element name="else" type="nextStep" minOccurs="0"/>
               </xsd:sequence>
            </xsd:complexType>
         </xsd:element>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: object

Super-types:None
Sub-types:None
Nameobject
Abstractno
No documentation provided.
<...
 id="xsd:string" [0..1]
 type="xsd:string" [0..1]
 objectId="xsd:string" [0..1]
 ref="xsd:string" [0..1]
>
   Start Choice [0..*]
      <method> method </method> [0..1]
      <property> property </property> [0..1]
      <html> html </html> [0..1]
   End Choice
</...>
<xsd:complexType name="object">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="method" type="method" minOccurs="0"/>
         <xsd:element name="property" type="property" minOccurs="0"/>
         <xsd:element name="html" type="html" minOccurs="0"/>
      </xsd:choice>
   </xsd:sequence>
   <xsd:attribute name="id" type="xsd:string"/>
   <xsd:attribute name="type" type="xsd:string"/>
   <xsd:attribute name="objectId" type="xsd:string"/>
   <xsd:attribute name="ref" type="xsd:string"/>
</xsd:complexType>

Complex Type: previousStep

Super-types:None
Sub-types:None
NamepreviousStep
Abstractno
No documentation provided.
<...>
   Start Choice [0..*]
      <buttonText> multiLangString </buttonText> [1]
      <reset> ... </reset> [1]
      <target> target </target> [1]
      <condition      > [1] 
         <if> ifCondition </if> [1]
         <then> previousStep </then> [1]
         <else> previousStep </else> [0..1]
      </condition>
   End Choice
</...>
<xsd:complexType name="previousStep">
   <xsd:sequence>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
         <xsd:element name="buttonText" type="multiLangString"/>
         <xsd:element name="reset"/>
         <xsd:element name="target" type="target"/>
         <xsd:element name="condition">
            <xsd:complexType>
               <xsd:sequence>
                  <xsd:element name="if" type="ifCondition"/>
                  <xsd:element name="then" type="previousStep"/>
                  <xsd:element name="else" type="previousStep" minOccurs="0"/>
               </xsd:sequence>
            </xsd:complexType>
         </xsd:element>
      </xsd:choice>
   </xsd:sequence>
</xsd:complexType>

Complex Type: property

Super-types:argument < property (by extension)
Sub-types:None
Nameproperty
Abstractno
No documentation provided.
<...
 name="xsd:string" [1]
>
   <!-- Mixed content -->
   Start Choice [0..1]
      <value> value </value> [1]
      <object> object </object> [1]
      <helper> helper </helper> [1]
      <null> ... </null> [1]
      <true> ... </true> [1]
      <false> ... </false> [1]
      <array> array </array> [1]
      <datetime> argument </datetime> [1]
   End Choice
</...>
<xsd:complexType name="property">
   <xsd:complexContent mixed="true">
      <xsd:extension base="argument">
         <xsd:attribute name="name" type="xsd:string" use="required"/>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>

Complex Type: step

Super-types:None
Sub-types:None
No documentation provided.
<...
 id="xsd:string" [1]
>
Start All [1]

<objects> element </objects> [0..1] <navigation> navigation </navigation> [0..1] <beforeView> element </beforeView> [0..1] <view> element </view> [0..1] <onSubmit> element </onSubmit> [0..1] <afterView> element </afterView> [0..1] <beforeValidate> element </beforeValidate> [0..1] End All

</...>
<xsd:complexType name="step">
   <xsd:all>
      <xsd:element name="objects" type="element" minOccurs="0"/>
      <xsd:element name="navigation" type="navigation" minOccurs="0"/>
      <xsd:element name="beforeView" type="element" minOccurs="0"/>
      <xsd:element name="view" type="element" minOccurs="0"/>
      <xsd:element name="onSubmit" type="element" minOccurs="0"/>
      <xsd:element name="afterView" type="element" minOccurs="0"/>
      <xsd:element name="beforeValidate" type="element" minOccurs="0"/>
   </xsd:all>
   <xsd:attribute name="id" type="xsd:string" use="required"/>
</xsd:complexType>

Complex Type: target

Super-types:None
Sub-types:None
Nametarget
Abstractno
No documentation provided.
<...
 ref="xsd:string" [1]
/> 

<xsd:complexType name="target">
   <xsd:attribute name="ref" type="xsd:string" use="required"/>
</xsd:complexType>

Complex Type: value

Super-types:argument < value (by extension)
Sub-types:None
Namevalue
Abstractno
<...
 scope="xsd:string" [0..1] 
 name="xsd:string" [0..1] 
 method="xsd:string" [0..1] 
>
   <!-- Mixed content -->
   Start Choice [0..1]
      <value> value </value> [1]
      <object> object </object> [1]
      <helper> helper </helper> [1]
      <null> ... </null> [1]
      <true> ... </true> [1]
      <false> ... </false> [1]
      <array> array </array> [1]
      <datetime> argument </datetime> [1]
   End Choice
   Start Choice [0..*]
      <param> argument </param> [1]
      <arg> argument </arg> [1]
   End Choice
</...>
<xsd:complexType name="value" mixed="true">
   <xsd:complexContent>
      <xsd:extension base="argument">
         <xsd:sequence>
            <xsd:choice minOccurs="0" maxOccurs="unbounded">
               <xsd:element name="param" type="argument"/>
               <xsd:element name="arg" type="argument"/>
            </xsd:choice>
         </xsd:sequence>
         <xsd:attribute name="scope" type="xsd:string"/>
         <xsd:attribute name="name" type="xsd:string"/>
         <xsd:attribute name="method" type="xsd:string"/>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>

Simple Type: boolean

Super-types:xsd:normalizedString < boolean (by restriction)
Sub-types:None
Nameboolean
Content
  • Base XSD Type: normalizedString
  • value comes from list: {'true'|'false'}
No documentation provided.
<xsd:simpleType name="boolean">
   <xsd:restriction base="xsd:normalizedString">
      <xsd:enumeration value="true"/>
      <xsd:enumeration value="false"/>
   </xsd:restriction>
</xsd:simpleType>

Glossary

Abstract (Applies to complex type definitions and element declarations). An abstract element or complex type cannot used to validate an element instance. If there is a reference to an abstract element, only element declarations that can substitute the abstract element can be used to validate the instance. For references to abstract type definitions, only derived types can be used.

All Model Group Child elements can be provided in any order in instances. See: http://www.w3.org/TR/xmlschema-1/#element-all.

Choice Model Group Only one from the list of child elements and model groups can be provided in instances. See: http://www.w3.org/TR/xmlschema-1/#element-choice.

Collapse Whitespace Policy Replace tab, line feed, and carriage return characters with space character (Unicode character 32). Then, collapse contiguous sequences of space characters into single space character, and remove leading and trailing space characters.

Disallowed Substitutions (Applies to element declarations). If substitution is specified, then substitution group members cannot be used in place of the given element declaration to validate element instances. If derivation methods, e.g. extension, restriction, are specified, then the given element declaration will not validate element instances that have types derived from the element declaration's type using the specified derivation methods. Normally, element instances can override their declaration's type by specifying an xsi:type attribute.

Key Constraint Like Uniqueness Constraint, but additionally requires that the specified value(s) must be provided. See: http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions .

Key Reference Constraint Ensures that the specified value(s) must match value(s) from a Key Constraint or Uniqueness Constraint. See: http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions .

Model Group Groups together element content, specifying the order in which the element content can occur and the number of times the group of element content may be repeated. See: http://www.w3.org/TR/xmlschema-1/#Model_Groups.

Nillable (Applies to element declarations). If an element declaration is nillable, instances can use the xsi:nil attribute. The xsi:nil attribute is the boolean attribute, nil, from the http://www.w3.org/2001/XMLSchema-instance namespace. If an element instance has an xsi:nil attribute set to true, it can be left empty, even though its element declaration may have required content.

Notation A notation is used to identify the format of a piece of data. Values of elements and attributes that are of type, NOTATION, must come from the names of declared notations. See: http://www.w3.org/TR/xmlschema-1/#cNotation_Declarations.

Preserve Whitespace Policy Preserve whitespaces exactly as they appear in instances.

Prohibited Derivations (Applies to type definitions). Derivation methods that cannot be used to create sub-types from a given type definition.

Prohibited Substitutions (Applies to complex type definitions). Prevents sub-types that have been derived using the specified derivation methods from validating element instances in place of the given type definition.

Replace Whitespace Policy Replace tab, line feed, and carriage return characters with space character (Unicode character 32).

Sequence Model Group Child elements and model groups must be provided in the specified order in instances. See: http://www.w3.org/TR/xmlschema-1/#element-sequence.

Substitution Group Elements that are members of a substitution group can be used wherever the head element of the substitution group is referenced.

Substitution Group Exclusions (Applies to element declarations). Prohibits element declarations from nominating themselves as being able to substitute a given element declaration, if they have types that are derived from the original element's type using the specified derivation methods.

Target Namespace The target namespace identifies the namespace that components in this schema belongs to. If no target namespace is provided, then the schema components do not belong to any namespace.

Uniqueness Constraint Ensures uniqueness of an element/attribute value, or a combination of values, within a specified scope. See: http://www.w3.org/TR/xmlschema-1/#cIdentity-constraint_Definitions .