Is Housing Authorities Public or Tribal
Boolean or coded flag indicating whether the vendor site is classified as a housing authority, specifically public or tribal, within the Other Transaction Award contract detail. In FPDS, this is a status attribute on the vendor site’s government-entity type classification rather than a standalone organizational description.
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 public or tribal housing authorities
- Segment vendor site records by government-entity subtype
- Support compliance or demographic reporting on vendor classifications
Common Mistakes
- Interpreting the flag as the full vendor type instead of one subtype condition
- Assuming a zero or null value always means the vendor is not a housing authority
Query Guidance
Use this field as a boolean or coded filter in WHERE clauses, for example `= 1`, `= 'Y'`, or the observed true code in your extract. When joining or aggregating, pair it with the broader government-entity type fields to validate classification and avoid counting coded values without decoding them.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS is_housing_authorities_public_or_tribal
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.