Generic Boolean03
Numeric flag in the Award > Generic Tags > Generic Booleans group that stores the value of Generic Boolean 3. It appears to be a binary indicator, typically represented as 0/1, used to carry a reusable award-level attribute.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering award records by a custom boolean attribute
- grouping awards into reusable analysis buckets
- joining with other award-level flags for segment analysis
Common Mistakes
- assuming the numeric value has a universal business meaning without validation
- treating the field as a continuous numeric measure instead of a binary/coded flag
Query Guidance
Use equality filters or CASE logic, for example WHERE genericBoolean03 = 1 for the active/true state once confirmed. In SQL, cast or coalesce carefully if the source stores nulls or mixed numeric types, and verify value distributions before relying on the field in joins, counts, or derived indicators.
SQL Examples
Preview values
SELECT
content__award__genericTags__genericBooleans__genericBoolean03 AS generic_boolean03
FROM fpds.data
WHERE content__award__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__award__genericTags__genericBooleans__genericBoolean03) AS total_value
FROM fpds.data
WHERE content__award__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
Distribution overview
SELECT
min(content__award__genericTags__genericBooleans__genericBoolean03) AS min_value,
avg(content__award__genericTags__genericBooleans__genericBoolean03) AS avg_value,
max(content__award__genericTags__genericBooleans__genericBoolean03) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.