RegistryAccount
A RegistryAccount record is used to represent further information for an ExternalAccount record where the authority issuing the account is a registry.
It contains extra fields that are registry specific which can then be used for integrations with external registry systems.
- Section: Position Keeping
Metadata
- Base Table Class: Static
- Default Size: Account = 500
Fields
| Name | Type | Size (bytes) | Description |
|---|---|---|---|
| Id | Integer (signed) | 8 | The unique identifier of this RegistryAccount. |
| Status | Set of Status | 4 | |
| ExternalAccount | Foreign key to ExternalAccount | 8 | This is a reference to the ExternalAccount table. It is keyed by the ExternalAccount column in this table to the Id column in the ExternalAccount table. |
| Name | String | 48 | The long text identifier of this RegistryAccount. |
| ProviderAccount | String | 40 | The human readable identifier of the Account. It is a free text field, up to a maximum of 40 characters. |
| UpdateNumber | Integer (unsigned) | 8 | A 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. |
| OwnerUser | Foreign key to User | 8 | The Id of the User that owns this RegistryAccount. |
| OwnerGroup | Foreign key to Group | 8 | The Id of the Group that owns this RegistryAccount. |
| OwnerFirm | Foreign key to Firm | 8 | The Id of the Firm that owns this RegistryAccount. |
| CreateUser | Foreign key to User | 8 | The Id of the User that created this RegistryAccount. |
| CreateTimestamp | Integer (unsigned) | 8 | The time at which this RegistryAccount was created. |
| UpdateUser | Foreign key to User | 8 | The Id of the User that last updated this RegistryAccount. |
| UpdateTimestamp | Integer (unsigned) | 8 | The time at which this RegistryAccount was last updated. |