Generic Boolean03
Numeric flag in the Other Transaction Award generic tags that records the value of the third generic boolean attribute. It is a simple 0/1-style indicator, with 0 shown in the example value, and should be interpreted only within the specific FPDS data model context.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- binary filtering
- award segmentation
- custom compliance or program flag analysis
Common Mistakes
- assuming the field has a universal procurement meaning
- interpreting 0 as a negative outcome without confirming the agency-specific code definition
Query Guidance
Use equality filters or CASE expressions for binary analysis, for example `WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03 = 1`. If the field is sparsely populated or inconsistently coded, pair it with null checks and inspect distinct values before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03 AS generic_boolean03
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03) AS min_value,
avg(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03) AS avg_value,
max(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean03 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.