Venue
A Venue is a collection of Markets. It is a way of grouping markets into a single entity to represent an exchange or other market operator that is responsible for more than a single Market. Markets are grouped by Venue, each Market belonging to one Venue.
- Section: Universal
Metadata
- Base Table Class: Static
- Default Size: 100
Fields
| Name | Type | Size (bytes) | Description |
|---|---|---|---|
| Id | Integer (signed) | 8 | The unique identifier of this Venue. |
| Status | Set of Status | 4 | |
| ShortName | String | 24 | The short text identifier of this Venue. |
| Name | String | 48 | The long text identifier of this Venue. |
| TimeZone | Foreign key to TimeZone | 8 | This is a reference to the TimeZone table. It is keyed by the TimeZone column in this table to the Id column in the TimeZone table. |
| HighlightColour | String | 6 | |
| WorkingStatus | Set of Status | 4 | |
| Mode | One of SystemMode | 1 | |
| WorkingMode | One of SystemMode | 1 | |
| 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 Venue. |
| OwnerGroup | Foreign key to Group | 8 | The Id of the Group that owns this Venue. |
| OwnerFirm | Foreign key to Firm | 8 | The Id of the Firm that owns this Venue. |
| CreateUser | Foreign key to User | 8 | The Id of the User that created this Venue. |
| CreateTimestamp | Integer (unsigned) | 8 | The time at which this Venue was created. |
| UpdateUser | Foreign key to User | 8 | The Id of the User that last updated this Venue. |
| UpdateTimestamp | Integer (unsigned) | 8 | The time at which this Venue was last updated. |
Foreign Keys
The following diagram shows the tables that have a foreign key link to the Venue table. All Table nodes can be clicked to take you to that table's definition page.
graph LR; Enterprise-->|Venue|Venue click Enterprise "/marketgrid/developer/model/tables/Enterprise" Market-->|Venue|Venue click Market "/marketgrid/developer/model/tables/Market"