IntraBalanceMovementQueryV01

camt.078.001.01

The IntraBalanceMovementQuery message is sent from an account owner/requestor to a settlement infrastructure to query intra-balance movement instructions, along with their current status, based on a set of search criteria. The message may also be used to:

Message Construction

Every ISO20022 message has at the highest level what we call ‘building blocks’. Because the message is constructed as immutable records, the association is by composition. Below you can see the relationship between the message and its constituent building blocks: For comparison, see the ISO20022 official specification

classDiagram
     direction LR
%% IntraBalanceMovementQueryV01 recursion level 0 with max 0
IntraBalanceMovementQueryV01 *-- "0..1" DocumentIdentification51 : Identification
IntraBalanceMovementQueryV01 *-- "1..1" IntraBalanceQueryDefinition9 : QueryDefinition
IntraBalanceMovementQueryV01 *-- "0..1" SupplementaryData1 : SupplementaryData
  

Now, we will zero-in one-by-one on each of these building blocks.

Identification building block

Unambiguous identification of the message as known by the account owner (or the instructing party acting on its behalf). Identification and creation date of a document. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% DocumentIdentification51 recursion level 0 with max 1
class DocumentIdentification51{
    Identification IsoMax35Text
    CopyDuplicate CopyDuplicate1Code
}
DocumentIdentification51 *-- "0..1" IDateAndDateTime2Choice : CreationDateTime
DocumentIdentification51 *-- "0..1" PartyIdentification136 : MessageOriginator
DocumentIdentification51 *-- "0..1" PartyIdentification136 : MessageRecipient
%% IDateAndDateTime2Choice recursion level 1 with max 1
%% PartyIdentification136 recursion level 1 with max 1
class PartyIdentification136{
    LEI IsoLEIIdentifier
}
PartyIdentification136 *-- "1..1" IPartyIdentification120Choice : Identification
%% PartyIdentification136 recursion level 1 with max 1
class PartyIdentification136{
    LEI IsoLEIIdentifier
}
PartyIdentification136 *-- "1..1" IPartyIdentification120Choice : Identification
  

DocumentIdentification51 members

Member name Description Data Type / Multiplicity
Identification Unique identifier of the document (message) assigned by the sender of the document. IsoMax35Text - Required 1..1
CreationDateTime Date and time at which the document (message) was created by the sender. IDateAndDateTime2Choice - Optional 0..1
CopyDuplicate Specifies if this document is a copy, a duplicate, or a duplicate of a copy. CopyDuplicate1Code - Optional 0..1
MessageOriginator Party that originated the message, if other than the sender. PartyIdentification136 - Optional 0..1
MessageRecipient Party that is the final destination of the message, if other than the receiver. PartyIdentification136 - Optional 0..1

QueryDefinition building block

Defines the intra-balance movement instruction query criteria. Defines the information that is searched through specific criteria. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% IntraBalanceQueryDefinition9 recursion level 0 with max 1
class IntraBalanceQueryDefinition9{
    QueryType MovementResponseType1Code
}
IntraBalanceQueryDefinition9 *-- "1..1" IntraBalanceQueryCriteria9 : SearchCriteria
%% IntraBalanceQueryCriteria9 recursion level 1 with max 1
class IntraBalanceQueryCriteria9{
    SettlementCurrency ActiveOrHistoricCurrencyCode
}
IntraBalanceQueryCriteria9 *-- "0..0" IReferences36Choice : References
IntraBalanceQueryCriteria9 *-- "0..1" IntraBalanceQueryStatus3 : Status
IntraBalanceQueryCriteria9 *-- "0..0" IAccountIdentificationSearchCriteria2Choice : CashAccount
IntraBalanceQueryCriteria9 *-- "0..0" SystemPartyIdentification8 : CashAccountOwner
IntraBalanceQueryCriteria9 *-- "0..1" BranchAndFinancialInstitutionIdentification6 : CashAccountServicer
IntraBalanceQueryCriteria9 *-- "0..0" IntraBalanceType3 : BalanceType
IntraBalanceQueryCriteria9 *-- "0..0" GenericIdentification37 : CashSubBalanceIdentification
IntraBalanceQueryCriteria9 *-- "0..1" IImpliedCurrencyAmountRange1Choice : SettlementAmount
IntraBalanceQueryCriteria9 *-- "0..1" IImpliedCurrencyAmountRange1Choice : SettledAmount
IntraBalanceQueryCriteria9 *-- "0..1" IDateAndDateTimeSearch5Choice : IntendedSettlementDate
IntraBalanceQueryCriteria9 *-- "0..1" IDateAndDateTimeSearch5Choice : EffectiveSettlementDate
IntraBalanceQueryCriteria9 *-- "0..0" IPriorityNumeric4Choice : Priority
IntraBalanceQueryCriteria9 *-- "0..0" SystemPartyIdentification8 : MessageOriginator
IntraBalanceQueryCriteria9 *-- "0..1" IDateAndDateTimeSearch5Choice : CreationDateTime
  

IntraBalanceQueryDefinition9 members

Member name Description Data Type / Multiplicity
QueryType Defines the type of query. MovementResponseType1Code - Required 1..1
SearchCriteria Defines the criteria to extract the intra-balance movement instruction information. IntraBalanceQueryCriteria9 - Required 1..1

SupplementaryData building block

Additional information that cannot be captured in the structured elements and/or any other specific block. Additional information that can not be captured in the structured fields and/or any other specific block. For comparison, see the ISO20022 official specification

classDiagram
   direction tb
%% SupplementaryData1 recursion level 0 with max 1
class SupplementaryData1{
    PlaceAndName IsoMax350Text
}
SupplementaryData1 *-- "1..1" IsoSupplementaryDataEnvelope1 : Envelope
%% IsoSupplementaryDataEnvelope1 recursion level 1 with max 1
  

SupplementaryData1 members

Member name Description Data Type / Multiplicity
PlaceAndName Unambiguous reference to the location where the supplementary data must be inserted in the message instance. In the case of XML, this is expressed by a valid XPath. IsoMax350Text - Optional 0..1
Envelope Technical element wrapping the supplementary data. IsoSupplementaryDataEnvelope1 - Required 1..1

Extensibility and generalization considerations

To facilitate generalized design patterns in the system, the IntraBalanceMovementQueryV01 implementation follows a specific implementaiton pattern. First of all, IntraBalanceMovementQueryV01 impleemnts IOuterRecord indicating it is the outermost logical part of the message definition. Like all message wrappers, IntraBalanceMovementQueryV01Document implements IOuterDocument. Because IntraBalanceMovementQueryV01 implements IOuterDocument, it is a suitable template parameter for IOuterDocument, and causes the internal ‘Message’ to be of type IntraBalanceMovementQueryV01.

classDiagram
    class IOuterRecord
    IntraBalanceMovementQueryV01 --|> IOuterRecord : Implements
    IntraBalanceMovementQueryV01Document --|> IOuterDocument~IntraBalanceMovementQueryV01~ : Implements
    class IOuterDocument~IntraBalanceMovementQueryV01~ {
        IntraBalanceMovementQueryV01 Message
     }
  

Document wrapper for serialization

The only real purpose IntraBalanceMovementQueryV01Document serves is to cause the document to be serialized into the ‘urn:iso:std:iso:20022:tech:xsd:camt.078.001.01’ namespace. Therefore, it will probably be the usual practice to build the message and construct this wrapper at the last minute using IntraBalanceMovementQueryV01.ToDocument() method. The returned IntraBalanceMovementQueryV01Document value will serialize correctly according to ISO 20022 standards.

classDiagram
    IntraBalanceMovementQueryV01Document *-- IntraBalanceMovementQueryV01 : Document
  

Sample of message format

This is an abbreviated version of what the message should look like.

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.078.001.01">
    <IntraBalMvmntQry>
        <Id>
            <!-- Identification inner content -->
        </Id>
        <QryDef>
            <!-- QueryDefinition inner content -->
        </QryDef>
        <SplmtryData>
            <!-- SupplementaryData inner content -->
        </SplmtryData>
    </IntraBalMvmntQry>
</Document>

Data from ISO specification

This is the technical data from the specification document.

<messageDefinition
  xmi:id="_DLtLYzncEem7JZMuWtwtsg"
  name="IntraBalanceMovementQueryV01"
  definition="The IntraBalanceMovementQuery message is sent from an account owner/requestor to a settlement infrastructure to query intra-balance movement instructions, along with their current status, based on a set of search criteria.&#xD;&#xA;The message may also be used to: &#xD;&#xA;- re-send a message sent by the account owner to the account servicer (the sub-function of the message is &quot;Duplicate&quot;) &#xD;&#xA;- provide a third party with a copy of a message being sent by the account owner for information (the sub-function of the message is &quot;Copy&quot;) &#xD;&#xA;- re-send to a third party a copy of a message being sent by the account owner for information (the sub-function of the message is &quot;Copy Duplicate&quot;).&#xD;&#xA;"
  registrationStatus="Registered"
  messageSet="_Fl3iMBHREeqzEaNIFJIN-g"
  xmlTag="IntraBalMvmntQry"
  rootElement="Document"
  xmlns:xmi="http://www.omg.org/XMI">
  <messageBuildingBlock
    xmi:id="_DLtLazncEem7JZMuWtwtsg"
    name="Identification"
    definition="Unambiguous identification of the message as known by the account owner (or the instructing party acting on its behalf)."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="0"
    xmlTag="Id"
    complexType="_BsblMTp6EemwKdP955WBJQ" />
  <messageBuildingBlock
    xmi:id="_DLtLbTncEem7JZMuWtwtsg"
    name="QueryDefinition"
    definition="Defines the intra-balance movement instruction query criteria."
    registrationStatus="Provisionally Registered"
    maxOccurs="1"
    minOccurs="1"
    xmlTag="QryDef"
    complexType="_VKQvgTp9EemwKdP955WBJQ" />
  <messageBuildingBlock
    xmi:id="_DLtLbzncEem7JZMuWtwtsg"
    name="SupplementaryData"
    definition="Additional information that cannot be captured in the structured elements and/or any other specific block."
    registrationStatus="Provisionally Registered"
    minOccurs="0"
    xmlTag="SplmtryData"
    complexType="_Qn0zC9p-Ed-ak6NoX_4Aeg_468227563" />
  <messageDefinitionIdentifier
    businessArea="camt"
    messageFunctionality="078"
    flavour="001"
    version="01" />
</messageDefinition>

ISO Building Blocks

The following items are used as building blocks to construct this message.