Primary Consortia Member UEI
Unique Entity Identifier (UEI) for the primary member of a consortium associated with an Other Transaction IDV. It identifies which participating entity is designated as the primary consortia member in the FPDS record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Linking an Other Transaction IDV to the primary consortium participant
- Aggregating awards by lead consortium member
- Identifying consortium participation patterns across entities
Common Mistakes
- Assuming the UEI is the award recipient name instead of an entity key
- Joining on a reformatted or legacy identifier rather than the exact stored UEI
Query Guidance
Use this field as a join key to entity lookup tables and group-by dimensions. In SQL, compare it exactly as a string, preserve leading/trailing characters as stored, and coalesce or filter nulls explicitly when counting consortium-linked records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI AS primary_consortia_member_u_e_i
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.