Consortia Flag
Boolean or coded indicator showing whether the Other Transaction Award record identifies the vendor as part of a consortia. It is a flag-level field, so the stored value represents the presence or absence of that condition rather than a narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter Other Transaction Awards involving consortium vendors
- Segment awards for compliance or oversight review
- Compare award patterns for consortium versus non-consortium vendors
Common Mistakes
- Assuming the flag means the award was made to a consortium rather than that the vendor is part of one
- Filtering on text assumptions without checking the actual coded values present in the extract
Query Guidance
Use equality filters on the observed indicator values, such as WHERE consortiaFlag = 'Y' or the applicable coded equivalent. In SQL, validate the domain first with DISTINCT or COUNT BY value, and avoid treating the field as a boolean unless the extract consistently stores true/false semantics.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__consortiaInformation__consortiaFlag AS consortia_flag
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__consortiaInformation__consortiaFlag IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__consortiaInformation__consortiaFlag AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.