VirtualReferenceNumber

This table holds Virtual Reference Numbers (VRN) for JPMorgan linked accounts. VRN information is a list of all acquired VRN and what accounts they're associated with. If a VRN association is removed (eg. account is assigned a new one), the old one is put in 'Suspended' status.

Metadata

  • Base Table Class: Static
  • Default Size: Account = 500

Fields

NameTypeSize (bytes)Description
IdInteger (signed)8The unique identifier of this VirtualReferenceNumber.
StatusSet of Status4
VirtualReferenceNumberString20JPMorgen issued VRN.
AccountForeign key to Account8Account this VRN is linked to.
UpdateNumberInteger (unsigned)8A number that records every change that happens to a record. It is primarily used to avoid write after read problems when an intermediate write has changed the originally read record.
OwnerUserForeign key to User8The Id of the User that owns this VirtualReferenceNumber.
OwnerGroupForeign key to Group8The Id of the Group that owns this VirtualReferenceNumber.
OwnerFirmForeign key to Firm8The Id of the Firm that owns this VirtualReferenceNumber.
CreateUserForeign key to User8The Id of the User that created this VirtualReferenceNumber.
CreateTimestampInteger (unsigned)8The time at which this VirtualReferenceNumber was created.
UpdateUserForeign key to User8The Id of the User that last updated this VirtualReferenceNumber.
UpdateTimestampInteger (unsigned)8The time at which this VirtualReferenceNumber was last updated.

Foreign Keys

The following diagram shows the tables that have a foreign key link to the VirtualReferenceNumber table. All Table nodes can be clicked to take you to that table's definition page.

graph LR;
	Account-->|VRN|VirtualReferenceNumber
	click Account "/marketgrid/developer/model/tables/Account"