Is Housing Authorities Public or Tribal
Boolean or coded flag indicating whether the vendor site is identified as a public or tribal housing authority. It is a classification attribute attached to vendor site details within an Other Transaction IDV record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter awards involving housing authority vendor sites
- Segment supplier populations for compliance or policy analysis
- Count or trend records tagged as public or tribal housing authorities
Common Mistakes
- Interpreting the flag as a vendor type for the entire entity rather than the specific site record
- Assuming coded values are standardized across all FPDS extracts without verifying the local encoding
Query Guidance
Use this field in WHERE clauses to isolate housing authority records, but first verify whether the dataset stores it as a boolean, numeric code, or text flag. When aggregating, exclude nulls explicitly if you need a true/false denominator, and join to description fields or decode tables if available to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS is_housing_authorities_public_or_tribal
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.