Generic Boolean02
Numeric custom boolean flag in the IDV Generic Tags area. It is a reusable internal tagging field that typically stores a boolean-like value such as 0/1 to mark whether a record meets a specific locally defined condition.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter records into a tagged analysis cohort
- Group IDVs by a custom internal classification
- Flag records for reusable reporting rules
Common Mistakes
- Assuming the flag has a universal FPDS meaning
- Using the field without confirming whether 0/1 or another coding scheme is in effect
Query Guidance
Use this field in WHERE clauses for simple inclusion or exclusion logic, and test for both numeric and null values explicitly. Example: WHERE content__IDV__genericTags__genericBooleans__genericBoolean02 = 1; if the dataset uses strings or nonstandard coding, inspect distinct values first before applying filters.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericBooleans__genericBoolean02 AS generic_boolean02
FROM fpds.data
WHERE content__IDV__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__IDV__genericTags__genericBooleans__genericBoolean02) AS total_value
FROM fpds.data
WHERE content__IDV__genericTags__genericBooleans__genericBoolean02 IS NOT NULL
Distribution overview
SELECT
min(content__IDV__genericTags__genericBooleans__genericBoolean02) AS min_value,
avg(content__IDV__genericTags__genericBooleans__genericBoolean02) AS avg_value,
max(content__IDV__genericTags__genericBooleans__genericBoolean02) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.