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.

Family: Other Transaction IDV
Category: General
Data Type: identifier_or_code
Semantic Type: identifier
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI
Title
Primary Consortia Member UEI
FPDS Path
OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaMemberUEI
Description
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.
Business Meaning
This field helps analysts attribute the consortium structure of an award to a specific organization, which is useful for understanding lead-partner relationships, award concentration, and organizational participation patterns in Other Transaction agreements. It also supports matching consortium activity to entity-level performance, spending, and award histories.
Example Value
GFJNNNA72UN4
Observed Non-Null Count
294

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI
FPDS XML Path
OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaMemberUEI
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaMemberUEI' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaMemberUEI'.

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.