Generic Boolean02
Numeric indicator for Generic Boolean02 within the Other Transaction Award generic tags. It represents a boolean-style flag stored as a numeric value, typically using 0/1 semantics rather than free text.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering awards by a specific yes/no attribute
- Grouping records for comparative analysis
- Joining to other generic tag indicators for composite logic
Common Mistakes
- Interpreting the field as a quantitative amount
- Assuming 0 and null have the same meaning
Query Guidance
Use equality filters such as `= 1` or `= 0` after confirming the encoding in the dataset. In SQL, handle nulls explicitly with `IS NULL` or `COALESCE` when separating unknown from false, and cast only if the source system stores the flag as text in some extracts.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02 AS generic_boolean02
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02) AS min_value,
avg(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02) AS avg_value,
max(content__OtherTransactionAward__genericTags__genericBooleans__genericBoolean02) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.