Generic Boolean03
Numeric custom boolean flag in the FPDS IDV Generic Tags section, stored as Generic Boolean03. It typically records a yes/no-style indicator using coded values such as 0 and 1 for extended or internal tagging purposes.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering IDVs that meet an internal tagging rule
- Grouping records for a custom analytic segment
- Joining to downstream business logic that uses extended FPDS tags
Common Mistakes
- Assuming the numeric value has a universal government-wide meaning
- Using the field without validating whether 0 and 1 are the only observed codes
Query Guidance
Use equality filters or CASE logic on the stored numeric code, and document the assumed code meaning in the query. Example pattern: WHERE content__IDV__genericTags__genericBooleans__genericBoolean03 = 1; if the code set is unclear, first run frequency counts and inspect related generic tag fields.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericBooleans__genericBoolean03 AS generic_boolean03
FROM fpds.data
WHERE content__IDV__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__genericTags__genericBooleans__genericBoolean03) AS total_value
FROM fpds.data
WHERE content__IDV__genericTags__genericBooleans__genericBoolean03 IS NOT NULL
Distribution overview
SELECT
min(content__IDV__genericTags__genericBooleans__genericBoolean03) AS min_value,
avg(content__IDV__genericTags__genericBooleans__genericBoolean03) AS avg_value,
max(content__IDV__genericTags__genericBooleans__genericBoolean03) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.