Is Housing Authorities Public or Tribal
Boolean or coded flag indicating whether the vendor site is classified as a housing authority that is public or tribal. It represents a specific government-entity subtype associated with the vendor’s site details, not a broader socioeconomic or performance attribute.
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 records by government-entity subtype
- Support compliance or entity-type validation checks
Common Mistakes
- Assuming the flag describes the award action rather than the vendor site
- Treating coded values as universally boolean without checking the dataset’s encoding
Query Guidance
In SQL, filter using the exact stored representation, such as = 1, = 'Y', or = 'true', after confirming the code set in the source. When joining or grouping, keep this field at the vendor-site level and avoid using it as a proxy for vendor ownership or award eligibility.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS is_housing_authorities_public_or_tribal
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isHousingAuthoritiesPublicOrTribal AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.