Generic Boolean04
Numeric boolean flag in the Other Transaction Award generic tags section. It indicates whether the fourth generic boolean indicator is set for the award record, typically using 0/1-style values rather than a descriptive text code.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering award cohorts by a specific tag
- grouping OT awards for descriptive analysis
- building reusable boolean-based reporting logic
Common Mistakes
- assuming it is a count or percentage
- treating null the same as 0 without checking source behavior
Query Guidance
Use equality or boolean-style predicates, such as `WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04 = 1`, and explicitly handle nulls if you need to separate missing from false. When summarizing, group by the field value only if you have confirmed the stored coding pattern in your extract.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04 AS generic_boolean04
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04 IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04) AS min_value,
avg(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04) AS avg_value,
max(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean04 IS NOT NULL
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.