> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Token state machines XML structure reference

> Look up exact token state machines elements, content models, required attributes, and schema types

Use this reference to check XML spelling, ordering, occurrence counts, and attribute types. It is generated from the exact XSD selected in the [schema catalog](/resources/schemas).

Namespace: `https://paiwise.tagroot.io/Schema/StateMachines.xsd`.

[Download the original XSD](https://paiwise.tagroot.io/Schema/StateMachines.xsd). SHA-256: `9e0401637ec0e957ef8934b5aa83b5250f6e5235585d01c7283150ef32c583e4`.

## Read the structural notation

* `sequence(A, B)` requires the listed order; `choice(A, B)` selects an allowed alternative.
* `[0..1]` means optional; `[1..1]` means exactly one; `unbounded` removes the upper count.
* `group(Name)`, element types, and `extension(Base)` refer to declarations elsewhere in this reference or an imported schema. Inherited fields are not repeated.
* Names separated by `/` identify a declaration's containing element or type. They are lookup labels, not XML element names.
* Structural validity does not establish provider support, execution permissions, or successful Script evaluation. The original XSD and [validator](/resources/validate-xml) determine XML validity.

For complete construction steps, use [contract authoring](/contracts/from-scratch) or [the token and machine example](/build/tokenized-assets/from-scratch).

<AccordionGroup>
  <Accordion title="StateMachine (element)">
    ```text theme={null}
    sequence(SingletonMachineId:TagReference[0..1], Variable[0..unbounded], State[1..unbounded], Event[0..unbounded], Action[0..unbounded], NoteCommand[0..unbounded], ReportPresent:xs:string[0..1], ReportHistory:xs:string[0..1])[1..1]
    ```

    | Attribute    | Type        | Use      | Default or fixed value |
    | ------------ | ----------- | -------- | ---------------------- |
    | `startState` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/SingletonMachineId (element)">
    Type: `TagReference`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/Variable (element)">
    ```text theme={null}
    extension(Value) 
    ```

    | Attribute | Type    | Use      | Default or fixed value |
    | --------- | ------- | -------- | ---------------------- |
    | `id`      | `xs:ID` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/State (element)">
    ```text theme={null}
    sequence(OnEnter:ActionReference[0..unbounded], OnLeave:ActionReference[0..unbounded], OnEvent[0..unbounded])[1..1]
    ```

    | Attribute | Type    | Use      | Default or fixed value |
    | --------- | ------- | -------- | ---------------------- |
    | `id`      | `xs:ID` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/State/OnEnter (element)">
    Type: `ActionReference`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/State/OnLeave (element)">
    Type: `ActionReference`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/State/OnEvent (element)">
    ```text theme={null}
    choice(EventReference[1..1], group(EventTypes)[1..1])[1..1]
    ```

    | Attribute            | Type         | Use      | Default or fixed value |
    | -------------------- | ------------ | -------- | ---------------------- |
    | `actionRef`          | `xs:string`  | optional | —                      |
    | `beforeActionScript` | `xs:string`  | optional | —                      |
    | `newState`           | `xs:string`  | optional | —                      |
    | `failureState`       | `xs:string`  | optional | —                      |
    | `suppressSample`     | `xs:boolean` | optional | —                      |
  </Accordion>

  <Accordion title="StateMachine/State/OnEvent/EventReference (element)">
    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `eventRef` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/Event (element)">
    ```text theme={null}
    choice(group(EventTypes)[1..1])[1..1]
    ```

    | Attribute | Type    | Use      | Default or fixed value |
    | --------- | ------- | -------- | ---------------------- |
    | `id`      | `xs:ID` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/Action (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute | Type    | Use      | Default or fixed value |
    | --------- | ------- | -------- | ---------------------- |
    | `id`      | `xs:ID` | required | —                      |
  </Accordion>

  <Accordion title="StateMachine/NoteCommand (element)">
    ```text theme={null}
    sequence(Title:HumanReadableText[1..unbounded], ToolTip:HumanReadableText[0..unbounded], Confirmation:HumanReadableText[0..unbounded], Success:HumanReadableText[0..unbounded], Failure:HumanReadableText[0..unbounded], Parameters[0..1], NoteContextScript:xs:string[0..1], NoteGenerationScript:xs:string[1..1])[1..1]
    ```

    | Attribute      | Type         | Use      | Default or fixed value |
    | -------------- | ------------ | -------- | ---------------------- |
    | `id`           | `xs:string`  | required | —                      |
    | `ownerNote`    | `xs:boolean` | optional | false                  |
    | `externalNote` | `xs:boolean` | optional | false                  |
    | `personal`     | `xs:boolean` | optional | false                  |
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Title (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/ToolTip (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Confirmation (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Success (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Failure (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters (element)">
    ```text theme={null}
    choice(StringParameter:StringParameter[1..1], NumericalParameter:NumericalParameter[1..1], BooleanParameter:BooleanParameter[1..1], DateParameter:DateParameter[1..1], TimeParameter:TimeParameter[1..1], DateTimeParameter:DateTimeParameter[1..1], DurationParameter:DurationParameter[1..1])[1..unbounded]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/StringParameter (element)">
    Type: `StringParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/NumericalParameter (element)">
    Type: `NumericalParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/BooleanParameter (element)">
    Type: `BooleanParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/DateParameter (element)">
    Type: `DateParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/TimeParameter (element)">
    Type: `TimeParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/DateTimeParameter (element)">
    Type: `DateTimeParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/Parameters/DurationParameter (element)">
    Type: `DurationParameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/NoteContextScript (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/NoteCommand/NoteGenerationScript (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/ReportPresent (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="StateMachine/ReportHistory (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionReference (complexType)">
    | Attribute            | Type        | Use      | Default or fixed value |
    | -------------------- | ----------- | -------- | ---------------------- |
    | `actionRef`          | `xs:string` | required | —                      |
    | `beforeActionScript` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="Actions (complexType)">
    ```text theme={null}
    sequence(group(ActionTypes)[1..unbounded])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="Value (complexType)">
    ```text theme={null}
    choice(group(ValueTypes)[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `value`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ValueTypes (group)">
    ```text theme={null}
    choice(TagReference:TagReference[1..1], TokenProperty:TokenProperty[1..1], String:xs:string[1..1], Number:xs:decimal[1..1], Boolean:xs:boolean[1..1], Uri:xs:anyURI[1..1], Binary:xs:base64Binary[1..1], Date:xs:date[1..1], DateTime:xs:dateTime[1..1], Time:xs:time[1..1], Duration:xs:duration[1..1], Calc:xs:string[1..1])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/TagReference (element)">
    Type: `TagReference`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/TokenProperty (element)">
    Type: `TokenProperty`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/String (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Number (element)">
    Type: `xs:decimal`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Boolean (element)">
    Type: `xs:boolean`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Uri (element)">
    Type: `xs:anyURI`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Binary (element)">
    Type: `xs:base64Binary`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Date (element)">
    Type: `xs:date`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/DateTime (element)">
    Type: `xs:dateTime`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Time (element)">
    Type: `xs:time`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Duration (element)">
    Type: `xs:duration`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ValueTypes/Calc (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="TagReference (complexType)">
    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `tag`     | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="TokenProperty (simpleType)">
    ```text theme={null}
    restriction(xs:string) value=TokenId value=TokenIdMethod value=Visibility value=Creator value=CreatorJid value=Owner value=OwnerJid value=TrustProvider value=TrustProviderJid value=Currency value=Reference value=Definition value=DefinitionNamespace value=CreationContract value=CreationContractTemplate value=OwnershipContract value=Value value=Created value=Updated value=Expires value=ArchiveRequired value=ArchiveOptional value=SignatureTimestamp value=Signature value=DefinitionSchemaDigest value=DefinitionSchemaHashFunction value=CreatorCanDestroy value=OwnerCanDestroyBatch value=OwnerCanDestroyIndividual value=CertifierCanDestroy value=FriendlyName value=Glyph value=GlyphContentType value=GlyphWidth value=GlyphHeight value=Ordinal value=BatchSize
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventTypes (group)">
    ```text theme={null}
    choice(OnCondition:xs:string[1..1], OnDuration:xs:string[1..1], OnTime[1..1], OnDateTime[1..1], OnPaymentReceived[1..1], OnPaymentSent[1..1], OnTextNote[1..1], OnXmlNote[1..1], OnExternalTextNote[1..1], OnExternalXmlNote[1..1], OnContractSignature[1..1], OnContractSigned[1..1], OnContractTemplateApproved[1..1], OnDestroyed:Empty[1..1], OnTransferred[1..1], OnEntryAdded[1..1], OnEntryUpdated[1..1], OnEntryDeleted[1..1])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventTypes/OnCondition (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventTypes/OnDuration (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventTypes/OnTime (element)">
    ```text theme={null}
    extension(xs:string) 
    ```

    | Attribute         | Type        | Use      | Default or fixed value |
    | ----------------- | ----------- | -------- | ---------------------- |
    | `timeCoordinates` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnDateTime (element)">
    ```text theme={null}
    extension(xs:string) 
    ```

    | Attribute         | Type        | Use      | Default or fixed value |
    | ----------------- | ----------- | -------- | ---------------------- |
    | `timeCoordinates` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnPaymentReceived (element)">
    | Attribute             | Type        | Use      | Default or fixed value |
    | --------------------- | ----------- | -------- | ---------------------- |
    | `fromVariable`        | `xs:string` | optional | —                      |
    | `amountVariable`      | `xs:string` | optional | —                      |
    | `amountExtraVariable` | `xs:string` | optional | —                      |
    | `amountTotalVariable` | `xs:string` | optional | —                      |
    | `currencyVariable`    | `xs:string` | optional | —                      |
    | `referenceVariable`   | `xs:string` | optional | —                      |
    | `conditionVariable`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnPaymentSent (element)">
    | Attribute             | Type        | Use      | Default or fixed value |
    | --------------------- | ----------- | -------- | ---------------------- |
    | `toVariable`          | `xs:string` | optional | —                      |
    | `amountVariable`      | `xs:string` | optional | —                      |
    | `amountExtraVariable` | `xs:string` | optional | —                      |
    | `amountTotalVariable` | `xs:string` | optional | —                      |
    | `currencyVariable`    | `xs:string` | optional | —                      |
    | `referenceVariable`   | `xs:string` | optional | —                      |
    | `conditionVariable`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnTextNote (element)">
    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `noteVariable`     | `xs:string` | optional | —                      |
    | `personalVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnXmlNote (element)">
    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `noteVariable`     | `xs:string` | optional | —                      |
    | `personalVariable` | `xs:string` | optional | —                      |
    | `localName`        | `xs:string` | optional | —                      |
    | `namespace`        | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnExternalTextNote (element)">
    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `noteVariable`     | `xs:string` | optional | —                      |
    | `personalVariable` | `xs:string` | optional | —                      |
    | `sourceVariable`   | `xs:string` | optional | —                      |
    | `privilege`        | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnExternalXmlNote (element)">
    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `noteVariable`     | `xs:string` | optional | —                      |
    | `personalVariable` | `xs:string` | optional | —                      |
    | `sourceVariable`   | `xs:string` | optional | —                      |
    | `localName`        | `xs:string` | optional | —                      |
    | `namespace`        | `xs:string` | optional | —                      |
    | `privilege`        | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnContractSignature (element)">
    | Attribute                 | Type                | Use      | Default or fixed value |
    | ------------------------- | ------------------- | -------- | ---------------------- |
    | `contractIdVariable`      | `xs:string`         | optional | —                      |
    | `contractXmlVariable`     | `xs:string`         | optional | —                      |
    | `parametersVariable`      | `xs:string`         | optional | —                      |
    | `rolesVariable`           | `xs:string`         | optional | —                      |
    | `machineReadableVariable` | `xs:string`         | optional | —                      |
    | `legalIdVariable`         | `xs:string`         | optional | —                      |
    | `roleVariable`            | `xs:string`         | optional | —                      |
    | `condition`               | `xs:string`         | optional | —                      |
    | `localName`               | `xs:string`         | optional | —                      |
    | `namespace`               | `xs:string`         | optional | —                      |
    | `nameType`                | `SecondaryNameType` | optional | None                   |
  </Accordion>

  <Accordion title="EventTypes/OnContractSigned (element)">
    | Attribute                 | Type                | Use      | Default or fixed value |
    | ------------------------- | ------------------- | -------- | ---------------------- |
    | `contractIdVariable`      | `xs:string`         | optional | —                      |
    | `contractXmlVariable`     | `xs:string`         | optional | —                      |
    | `parametersVariable`      | `xs:string`         | optional | —                      |
    | `rolesVariable`           | `xs:string`         | optional | —                      |
    | `machineReadableVariable` | `xs:string`         | optional | —                      |
    | `condition`               | `xs:string`         | optional | —                      |
    | `localName`               | `xs:string`         | optional | —                      |
    | `namespace`               | `xs:string`         | optional | —                      |
    | `nameType`                | `SecondaryNameType` | optional | None                   |
  </Accordion>

  <Accordion title="EventTypes/OnContractTemplateApproved (element)">
    | Attribute                 | Type                | Use      | Default or fixed value |
    | ------------------------- | ------------------- | -------- | ---------------------- |
    | `contractIdVariable`      | `xs:string`         | optional | —                      |
    | `contractXmlVariable`     | `xs:string`         | optional | —                      |
    | `parametersVariable`      | `xs:string`         | optional | —                      |
    | `machineReadableVariable` | `xs:string`         | optional | —                      |
    | `condition`               | `xs:string`         | optional | —                      |
    | `checkExisting`           | `xs:string`         | optional | —                      |
    | `localName`               | `xs:string`         | optional | —                      |
    | `namespace`               | `xs:string`         | optional | —                      |
    | `nameType`                | `SecondaryNameType` | optional | None                   |
  </Accordion>

  <Accordion title="EventTypes/OnDestroyed (element)">
    Type: `Empty`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventTypes/OnTransferred (element)">
    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `sellerVariable`   | `xs:string` | optional | —                      |
    | `buyerVariable`    | `xs:string` | optional | —                      |
    | `contractVariable` | `xs:string` | optional | —                      |
    | `valueVariable`    | `xs:string` | optional | —                      |
    | `amountVariable`   | `xs:string` | optional | —                      |
    | `currencyVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnEntryAdded (element)">
    | Attribute        | Type        | Use      | Default or fixed value |
    | ---------------- | ----------- | -------- | ---------------------- |
    | `entryVariable`  | `xs:string` | optional | —                      |
    | `collectionName` | `xs:string` | optional | —                      |
    | `typeName`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnEntryUpdated (element)">
    | Attribute        | Type        | Use      | Default or fixed value |
    | ---------------- | ----------- | -------- | ---------------------- |
    | `entryVariable`  | `xs:string` | optional | —                      |
    | `collectionName` | `xs:string` | optional | —                      |
    | `typeName`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="EventTypes/OnEntryDeleted (element)">
    | Attribute        | Type        | Use      | Default or fixed value |
    | ---------------- | ----------- | -------- | ---------------------- |
    | `entryVariable`  | `xs:string` | optional | —                      |
    | `collectionName` | `xs:string` | optional | —                      |
    | `typeName`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="TimeCoordinates (simpleType)">
    ```text theme={null}
    restriction(xs:string) pattern=^(Local|UTC|(\+?(0?\d|1[0-4]):(00|15|30|45))|(-(0?\d|1[0-2]):(00|15|30|45)))$
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes (group)">
    ```text theme={null}
    choice(Payment[1..1], ReserveAmount[1..1], ReleaseAmount[1..1], BuyEDaler[1..1], SellEDaler[1..1], XmlNote[1..1], TextNote[1..1], AuthorizeSource[1..1], UnauthorizeSource[1..1], HttpPost[1..1], XmppMessage[1..1], XmppIqGet[1..1], XmppIqSet[1..1], MailMessage[1..1], PersistVariable[1..1], LogEvent[1..1], CreateEntry[1..1], PersistHash[1..1], If[1..1], IfHash[1..1], Switch[1..1], For[1..1], ForEach[1..1], While[1..1], Do[1..1], Try[1..1], Script:xs:string[1..1], CallAction:ActionReference[1..1], ScheduleAction[1..1], End:Empty[1..1], Destroy:Empty[1..1], Fail[1..1], Error[1..1])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment (element)">
    ```text theme={null}
    sequence(From:Value[0..1], To:Value[0..1], Amount:Value[0..1], AmountExtra:Value[0..1], Currency:Value[0..1], ValidDays:Value[0..1], Reference:Value[0..1], Contract:Value[0..1], Condition:Value[0..1])[1..1]
    ```

    | Attribute             | Type        | Use      | Default or fixed value |
    | --------------------- | ----------- | -------- | ---------------------- |
    | `from`                | `xs:string` | optional | —                      |
    | `to`                  | `xs:string` | optional | —                      |
    | `amount`              | `xs:string` | optional | —                      |
    | `amountExtra`         | `xs:string` | optional | —                      |
    | `currency`            | `xs:string` | optional | —                      |
    | `validDays`           | `xs:string` | optional | —                      |
    | `reference`           | `xs:string` | optional | —                      |
    | `contract`            | `xs:string` | optional | —                      |
    | `condition`           | `xs:string` | optional | —                      |
    | `transactionVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Payment/From (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/Amount (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/AmountExtra (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/Currency (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/ValidDays (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/Reference (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/Contract (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Payment/Condition (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount (element)">
    ```text theme={null}
    sequence(From:Value[0..1], Amount:Value[0..1], Currency:Value[0..1], ValidDays:Value[0..1], Reference:Value[0..1], Contract:Value[0..1])[1..1]
    ```

    | Attribute             | Type        | Use      | Default or fixed value |
    | --------------------- | ----------- | -------- | ---------------------- |
    | `from`                | `xs:string` | optional | —                      |
    | `amount`              | `xs:string` | optional | —                      |
    | `currency`            | `xs:string` | optional | —                      |
    | `validDays`           | `xs:string` | optional | —                      |
    | `reference`           | `xs:string` | optional | —                      |
    | `contract`            | `xs:string` | optional | —                      |
    | `transactionVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/From (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/Amount (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/Currency (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/ValidDays (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/Reference (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReserveAmount/Contract (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Amount:Value[0..1], Currency:Value[0..1], ValidDays:Value[0..1], Reference:Value[0..1], Contract:Value[0..1])[1..1]
    ```

    | Attribute             | Type        | Use      | Default or fixed value |
    | --------------------- | ----------- | -------- | ---------------------- |
    | `to`                  | `xs:string` | optional | —                      |
    | `amount`              | `xs:string` | optional | —                      |
    | `currency`            | `xs:string` | optional | —                      |
    | `validDays`           | `xs:string` | optional | —                      |
    | `reference`           | `xs:string` | optional | —                      |
    | `contract`            | `xs:string` | optional | —                      |
    | `transactionVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/Amount (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/Currency (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/ValidDays (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/Reference (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ReleaseAmount/Contract (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Amount:Value[0..1], Currency:Value[0..1], Reference:Value[0..1], Contract:Value[0..1], ServiceProvider:Value[0..1], ServiceId:Value[0..1], Parameter:Parameter[0..unbounded])[1..1]
    ```

    | Attribute         | Type        | Use      | Default or fixed value |
    | ----------------- | ----------- | -------- | ---------------------- |
    | `to`              | `xs:string` | optional | —                      |
    | `amount`          | `xs:string` | optional | —                      |
    | `currency`        | `xs:string` | optional | —                      |
    | `reference`       | `xs:string` | optional | —                      |
    | `contract`        | `xs:string` | optional | —                      |
    | `serviceProvider` | `xs:string` | optional | —                      |
    | `serviceId`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/Amount (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/Currency (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/Reference (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/Contract (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/ServiceProvider (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/ServiceId (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/BuyEDaler/Parameter (element)">
    Type: `Parameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler (element)">
    ```text theme={null}
    sequence(From:Value[0..1], Amount:Value[0..1], Currency:Value[0..1], Reference:Value[0..1], Contract:Value[0..1], ServiceProvider:Value[0..1], ServiceId:Value[0..1], Parameter:Parameter[0..unbounded])[1..1]
    ```

    | Attribute         | Type        | Use      | Default or fixed value |
    | ----------------- | ----------- | -------- | ---------------------- |
    | `from`            | `xs:string` | optional | —                      |
    | `amount`          | `xs:string` | optional | —                      |
    | `currency`        | `xs:string` | optional | —                      |
    | `reference`       | `xs:string` | optional | —                      |
    | `contract`        | `xs:string` | optional | —                      |
    | `serviceProvider` | `xs:string` | optional | —                      |
    | `serviceId`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/From (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/Amount (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/Currency (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/Reference (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/Contract (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/ServiceProvider (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/ServiceId (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/SellEDaler/Parameter (element)">
    Type: `Parameter`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmlNote (element)">
    ```text theme={null}
    sequence(Content:Value[0..1], Personal:Value[0..1])[1..1]
    ```

    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `content`  | `xs:string` | optional | —                      |
    | `personal` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/XmlNote/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmlNote/Personal (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/TextNote (element)">
    ```text theme={null}
    sequence(Content:Value[0..1], Personal:Value[0..1])[1..1]
    ```

    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `content`  | `xs:string` | optional | —                      |
    | `personal` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/TextNote/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/TextNote/Personal (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/AuthorizeSource (element)">
    ```text theme={null}
    sequence(Source:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `source`  | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/AuthorizeSource/Source (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/UnauthorizeSource (element)">
    ```text theme={null}
    sequence(Source:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `source`  | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/UnauthorizeSource/Source (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/HttpPost (element)">
    ```text theme={null}
    sequence(Header[0..unbounded], Resource:Value[0..1], Content:Value[0..1])[1..1]
    ```

    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `resource`         | `xs:string` | required | —                      |
    | `content`          | `xs:string` | required | —                      |
    | `responseVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/HttpPost/Header (element)">
    ```text theme={null}
    sequence(Key:Value[0..1], Value:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `key`     | `xs:string` | optional | —                      |
    | `value`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/HttpPost/Header/Key (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/HttpPost/Header/Value (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/HttpPost/Resource (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/HttpPost/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppMessage (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Content:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `to`      | `xs:string` | optional | —                      |
    | `content` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/XmppMessage/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppMessage/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppIqGet (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Content:Value[0..1])[1..1]
    ```

    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `to`               | `xs:string` | optional | —                      |
    | `content`          | `xs:string` | optional | —                      |
    | `responseVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/XmppIqGet/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppIqGet/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppIqSet (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Content:Value[0..1])[1..1]
    ```

    | Attribute          | Type        | Use      | Default or fixed value |
    | ------------------ | ----------- | -------- | ---------------------- |
    | `to`               | `xs:string` | optional | —                      |
    | `content`          | `xs:string` | optional | —                      |
    | `responseVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/XmppIqSet/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/XmppIqSet/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/MailMessage (element)">
    ```text theme={null}
    sequence(To:Value[0..1], Subject:Value[0..1], Content:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `to`      | `xs:string` | optional | —                      |
    | `subject` | `xs:string` | optional | —                      |
    | `content` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/MailMessage/To (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/MailMessage/Subject (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/MailMessage/Content (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistVariable (element)">
    ```text theme={null}
    sequence(Name:Value[0..1], Value:Value[0..1], OnlyIfChanged:Value[0..1])[1..1]
    ```

    | Attribute        | Type         | Use      | Default or fixed value |
    | ---------------- | ------------ | -------- | ---------------------- |
    | `name`           | `xs:string`  | optional | —                      |
    | `value`          | `xs:string`  | optional | —                      |
    | `onlyIfChanged`  | `xs:boolean` | optional | false                  |
    | `suppressSample` | `xs:boolean` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/PersistVariable/Name (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistVariable/Value (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistVariable/OnlyIfChanged (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent (element)">
    ```text theme={null}
    sequence(Message:Value[0..1], Object:Value[0..1], Actor:Value[0..1], EventId:Value[0..1], Module:Value[0..1], Facility:Value[0..1], Tag[0..unbounded])[1..1]
    ```

    | Attribute  | Type         | Use      | Default or fixed value |
    | ---------- | ------------ | -------- | ---------------------- |
    | `message`  | `xs:string`  | optional | —                      |
    | `type`     | `EventType`  | optional | —                      |
    | `level`    | `EventLevel` | optional | —                      |
    | `object`   | `xs:string`  | optional | —                      |
    | `actor`    | `xs:string`  | optional | —                      |
    | `eventId`  | `xs:string`  | optional | —                      |
    | `module`   | `xs:string`  | optional | —                      |
    | `facility` | `xs:string`  | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Message (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Object (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Actor (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/EventId (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Module (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Facility (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Tag (element)">
    ```text theme={null}
    sequence(Key:Value[0..1], Value:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `key`     | `xs:string` | optional | —                      |
    | `value`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Tag/Key (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/LogEvent/Tag/Value (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry (element)">
    ```text theme={null}
    sequence(Collection:Value[0..1], Type:Value[0..1], Property[0..unbounded])[1..1]
    ```

    | Attribute    | Type        | Use      | Default or fixed value |
    | ------------ | ----------- | -------- | ---------------------- |
    | `collection` | `xs:string` | optional | —                      |
    | `type`       | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry/Collection (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry/Type (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry/Property (element)">
    ```text theme={null}
    sequence(Key:Value[0..1], Value:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `key`     | `xs:string` | optional | —                      |
    | `value`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry/Property/Key (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/CreateEntry/Property/Value (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistHash (element)">
    ```text theme={null}
    sequence(Hash:Value[0..1], Expires:Value[0..1], Realm:Value[0..1], Object:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `hash`    | `xs:string` | optional | —                      |
    | `expires` | `xs:string` | optional | —                      |
    | `realm`   | `xs:string` | optional | —                      |
    | `object`  | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/PersistHash/Hash (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistHash/Expires (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistHash/Realm (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/PersistHash/Object (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/If (element)">
    ```text theme={null}
    sequence(Then:Actions[1..1], Else:Actions[0..1])[1..1]
    ```

    | Attribute   | Type        | Use      | Default or fixed value |
    | ----------- | ----------- | -------- | ---------------------- |
    | `condition` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/If/Then (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/If/Else (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/IfHash (element)">
    ```text theme={null}
    sequence(Hash:Value[0..1], Realm:Value[0..1], Then:Actions[1..1], Else:Actions[0..1])[1..1]
    ```

    | Attribute        | Type        | Use      | Default or fixed value |
    | ---------------- | ----------- | -------- | ---------------------- |
    | `hash`           | `xs:string` | optional | —                      |
    | `realm`          | `xs:string` | optional | —                      |
    | `objectVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/IfHash/Hash (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/IfHash/Realm (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/IfHash/Then (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/IfHash/Else (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Switch (element)">
    ```text theme={null}
    sequence(Case[1..unbounded], Else:Actions[0..1])[1..1]
    ```

    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `selector` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Switch/Case (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute   | Type        | Use      | Default or fixed value |
    | ----------- | ----------- | -------- | ---------------------- |
    | `condition` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Switch/Else (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/For (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `variable` | `xs:string` | required | —                      |
    | `from`     | `xs:string` | required | —                      |
    | `to`       | `xs:string` | required | —                      |
    | `step`     | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/ForEach (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute  | Type        | Use      | Default or fixed value |
    | ---------- | ----------- | -------- | ---------------------- |
    | `variable` | `xs:string` | required | —                      |
    | `set`      | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/While (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute   | Type        | Use      | Default or fixed value |
    | ----------- | ----------- | -------- | ---------------------- |
    | `condition` | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Do (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `while`   | `xs:string` | required | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Try (element)">
    ```text theme={null}
    extension(Actions) sequence(Catch[0..1], Finally:Actions[0..1])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Try/Catch (element)">
    ```text theme={null}
    extension(Actions) 
    ```

    | Attribute           | Type        | Use      | Default or fixed value |
    | ------------------- | ----------- | -------- | ---------------------- |
    | `exceptionVariable` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Try/Finally (element)">
    Type: `Actions`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Script (element)">
    Type: `xs:string`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/CallAction (element)">
    Type: `ActionReference`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ScheduleAction (element)">
    ```text theme={null}
    extension(ActionReference) sequence(When[1..1])[1..1]
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/ScheduleAction/When (element)">
    ```text theme={null}
    extension(xs:string) 
    ```

    | Attribute         | Type        | Use      | Default or fixed value |
    | ----------------- | ----------- | -------- | ---------------------- |
    | `timeCoordinates` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/End (element)">
    Type: `Empty`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Destroy (element)">
    Type: `Empty`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Fail (element)">
    ```text theme={null}
    sequence(Reason:Value[0..1])[1..1]
    ```

    | Attribute    | Type        | Use      | Default or fixed value |
    | ------------ | ----------- | -------- | ---------------------- |
    | `reason`     | `xs:string` | optional | —                      |
    | `contractId` | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Fail/Reason (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="ActionTypes/Error (element)">
    ```text theme={null}
    sequence(Reason:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `reason`  | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="ActionTypes/Error/Reason (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="Parameter (complexType)">
    ```text theme={null}
    sequence(Key:Value[0..1], Value:Value[0..1])[1..1]
    ```

    | Attribute | Type        | Use      | Default or fixed value |
    | --------- | ----------- | -------- | ---------------------- |
    | `key`     | `xs:string` | optional | —                      |
    | `value`   | `xs:string` | optional | —                      |
  </Accordion>

  <Accordion title="Parameter/Key (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="Parameter/Value (element)">
    Type: `Value`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventType (simpleType)">
    ```text theme={null}
    restriction(xs:string) value=Debug value=Informational value=Notice value=Warning value=Error value=Critical value=Alert value=Emergency
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="EventLevel (simpleType)">
    ```text theme={null}
    restriction(xs:string) value=Minor value=Medium value=Major
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="Empty (complexType)">
    ```text theme={null}
    complexType(name=Empty)
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="NonEmptyString (simpleType)">
    ```text theme={null}
    restriction(xs:string) minLength=1
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="NoteParameter (complexType)">
    ```text theme={null}
    sequence(Description:HumanReadableText[0..unbounded])[1..1]
    ```

    | Attribute | Type             | Use      | Default or fixed value |
    | --------- | ---------------- | -------- | ---------------------- |
    | `name`    | `NonEmptyString` | required | —                      |
    | `guide`   | `xs:string`      | optional | —                      |
    | `exp`     | `xs:string`      | optional | —                      |
  </Accordion>

  <Accordion title="NoteParameter/Description (element)">
    Type: `HumanReadableText`.

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>

  <Accordion title="HumanReadableText (complexType)">
    ```text theme={null}
    extension(xs:string) 
    ```

    | Attribute | Type          | Use      | Default or fixed value |
    | --------- | ------------- | -------- | ---------------------- |
    | `lang`    | `xs:language` | required | —                      |
  </Accordion>

  <Accordion title="StringParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type                    | Use      | Default or fixed value |
    | ------------- | ----------------------- | -------- | ---------------------- |
    | `value`       | `xs:string`             | optional | —                      |
    | `regEx`       | `xs:string`             | optional | —                      |
    | `min`         | `xs:string`             | optional | —                      |
    | `minIncluded` | `xs:boolean`            | optional | true                   |
    | `max`         | `xs:string`             | optional | —                      |
    | `maxIncluded` | `xs:boolean`            | optional | true                   |
    | `minLength`   | `xs:nonNegativeInteger` | optional | —                      |
    | `maxLength`   | `xs:positiveInteger`    | optional | —                      |
  </Accordion>

  <Accordion title="NumericalParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type         | Use      | Default or fixed value |
    | ------------- | ------------ | -------- | ---------------------- |
    | `value`       | `xs:decimal` | optional | —                      |
    | `min`         | `xs:decimal` | optional | —                      |
    | `minIncluded` | `xs:boolean` | optional | true                   |
    | `max`         | `xs:decimal` | optional | —                      |
    | `maxIncluded` | `xs:boolean` | optional | true                   |
  </Accordion>

  <Accordion title="BooleanParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute | Type         | Use      | Default or fixed value |
    | --------- | ------------ | -------- | ---------------------- |
    | `value`   | `xs:boolean` | optional | —                      |
  </Accordion>

  <Accordion title="DateParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type         | Use      | Default or fixed value |
    | ------------- | ------------ | -------- | ---------------------- |
    | `value`       | `xs:date`    | optional | —                      |
    | `min`         | `xs:date`    | optional | —                      |
    | `minIncluded` | `xs:boolean` | optional | true                   |
    | `max`         | `xs:date`    | optional | —                      |
    | `maxIncluded` | `xs:boolean` | optional | true                   |
  </Accordion>

  <Accordion title="DateTimeParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type          | Use      | Default or fixed value |
    | ------------- | ------------- | -------- | ---------------------- |
    | `value`       | `xs:dateTime` | optional | —                      |
    | `min`         | `xs:dateTime` | optional | —                      |
    | `minIncluded` | `xs:boolean`  | optional | true                   |
    | `max`         | `xs:dateTime` | optional | —                      |
    | `maxIncluded` | `xs:boolean`  | optional | true                   |
  </Accordion>

  <Accordion title="TimeParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type         | Use      | Default or fixed value |
    | ------------- | ------------ | -------- | ---------------------- |
    | `value`       | `xs:time`    | optional | —                      |
    | `min`         | `xs:time`    | optional | —                      |
    | `minIncluded` | `xs:boolean` | optional | true                   |
    | `max`         | `xs:time`    | optional | —                      |
    | `maxIncluded` | `xs:boolean` | optional | true                   |
  </Accordion>

  <Accordion title="DurationParameter (complexType)">
    ```text theme={null}
    extension(NoteParameter) 
    ```

    | Attribute     | Type          | Use      | Default or fixed value |
    | ------------- | ------------- | -------- | ---------------------- |
    | `value`       | `xs:duration` | optional | —                      |
    | `min`         | `xs:duration` | optional | —                      |
    | `minIncluded` | `xs:boolean`  | optional | true                   |
    | `max`         | `xs:duration` | optional | —                      |
    | `maxIncluded` | `xs:boolean`  | optional | true                   |
  </Accordion>

  <Accordion title="SecondaryNameType (simpleType)">
    ```text theme={null}
    restriction(xs:string) value=None value=TokenCreation
    ```

    No attributes declared directly here. Check the referenced type or base type for inherited attributes.
  </Accordion>
</AccordionGroup>
