Generic Boolean02
Numeric flag in the Other Transaction IDV Generic Tags section representing the second reusable boolean indicator attached to the award record. It typically stores a binary value such as 0 or 1 to indicate whether the corresponding custom condition is present.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards matching a custom business rule
- Create counts or rates for a tagged subgroup
- Join or group records in reusable analysis workflows
Common Mistakes
- Assuming 1 always means yes without validating the local code definition
- Using the field as a descriptive label instead of a binary indicator
Query Guidance
Use explicit value tests such as = 1, = 0, or IS NULL depending on the analysis, and validate the coding scheme before applying logic. If the field is sparsely populated or implementation-specific, combine it with record type, award type, or related tag fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02 AS generic_boolean02
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02) AS total_value
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02) AS min_value,
avg(content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02) AS avg_value,
max(content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericBooleans__genericBoolean02 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.