ApplVerID (FIX tag 1128)
ApplVerID (tag 1128) is a String field defined in FIX 5.0 SP2. It belongs to the session envelope: every FIX 5.0 SP2 message carries it, so it identifies the session rather than describing the business event. It is an enumerated field with 11 defined values.
At a glance
- Tag
- 1128
- Name
- ApplVerID
- Datatype
- String
- Dialects
- FIX 5.0 SP2
- Messages
- 115
- Valid values
- 11
What the specification says
Specifies application version.
Descriptions are quoted from the FIX Orchestra sources under the Apache 2.0 licence.
A real message using tag 1128
| Tag | Field | Wire value | Meaning |
|---|---|---|---|
| 8 | BeginString | FIXT.1.1 | |
| 9 | BodyLength | 118 | |
| 35 | MsgType | D | NewOrderSingle |
| 1128 | ApplVerID | 9 | FIX50SP2 |
| 49 | SenderCompID | BOARTEAM | |
| 56 | TargetCompID | COUNTERPARTY | |
| 34 | MsgSeqNum | 2 | |
| 52 | SendingTime | 20240101-12:00:00.000 | |
| 11 | ClOrdID | ORD-10042 | |
| 54 | Side | 1 | Buy |
| 60 | TransactTime | 20240101-12:00:00.000 | |
| 40 | OrdType | 1 | Market |
| 10 | CheckSum | 136 |
Shown with | separators for readability. On the wire FIX uses SOH (0x01), an invisible control byte — and because BodyLength and CheckSum are computed over the actual bytes, the two forms have different checksums. Both are valid and both decode here.
Generated from the FIX 5.0 SP2 dictionary and verified at build time: it parses and validates with no issues. Open the decoder to try your own message.
Valid values
A value outside this list is not a parse error — the message still decodes — but validate() reports it as validate/value-not-in-enum.
| Value | Meaning | Symbolic name |
|---|---|---|
| 0 | FIX27 | FIX27 |
| 1 | FIX30 | FIX30 |
| 2 | FIX40 | FIX40 |
| 3 | FIX41 | FIX41 |
| 4 | FIX42 | FIX42 |
| 5 | FIX43 | FIX43 |
| 6 | FIX44 | FIX44 |
| 7 | FIX50 | FIX50 |
| 8 | FIX50SP1 | FIX50SP1 |
| 9 | FIX50SP2 | FIX50SP2 |
| 10 | FIXLatest | FIXLatest |
Where tag 1128 appears
Wire format
Free-form text. Any byte except the SOH separator is legal, so values are not trimmed or case-folded on the wire. @boarteam/fix keeps the value as a string; format rules are checked by validate(), which reports validate/invalid-value rather than throwing.
Read tag 1128 in TypeScript
import { createFixEngine } from "@boarteam/fix";import { dictionary } from "@boarteam/fix-dict-fix50sp2";const fix = createFixEngine(dictionary);const { message, issues } = fix.parse(raw);const applVerID = message.fields[1128]?.raw;// e.g. "0" — FIX27// The dictionary also carries the labels:const label = fix.dictionary .fieldByTag(1128) ?.enumValues?.find((e) => e.value === applVerID) ?.description;Other String fields
- 1127OrigSecondaryTradeID
- 1129CstmApplVerID
- 1126OrigTradeID
- 1130RefApplVerID
- 1131RefCstmApplVerID
- 1121RootPartySubID
- 1135RptSys
- 1136AllocClearingFeeIndicator
- 1137DefaultApplVerID
- 1117RootPartyID
- 1139ExchangeSpecialInstructions
- 1114TriggerTradingSessionSubID
- 1142MatchAlgorithm
- 1113TriggerTradingSessionID
- 1106TriggerSecurityDesc
- 1105TriggerSecurityIDSource
- 1151SecurityGroup
- 1104TriggerSecurityID
- 1103TriggerSymbol
- 1099PegSecurityDesc
- 1098PegSymbol
- 1097PegSecurityID
- 1096PegSecurityIDSource
- 1160SettlObligMsgID
Decode this in your own code
The same engine that produced the decoded example above is an Apache-2.0 npm package with zero runtime dependencies. It runs in Node and in the browser, and parse() returns problems as data instead of throwing.
npm i @boarteam/fix @boarteam/fix-dict-fix50sp2