Consortia Flag
Boolean or coded indicator showing whether the contractor is identified as part of a consortium in the Other Transaction IDV record. It flags consortia participation at the contract-detail level rather than describing the consortium itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards involving consortium participation
- Segment Other Transaction IDVs for market or vendor analysis
- Support compliance and oversight reporting on consortium-based structures
Common Mistakes
- Assuming a negative value means the record is invalid rather than simply not consortium-based
- Using the field without checking actual stored code values or related description fields
Query Guidance
Use exact-value filters based on the observed code set, for example WHERE consortiaFlag = 'Y' for consortium records. If the dataset stores mixed encodings, normalize the field in SQL with CASE logic before aggregation, and do not compare it as free text unless the source values confirm that behavior.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__consortiaFlag AS consortia_flag
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__consortiaFlag IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__consortiaInformation__consortiaFlag AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__consortiaFlag IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.