Is Domestic Shelter
Boolean or coded flag indicating whether the vendor site is identified as a domestic shelter in the Other Transaction Award record. It records the site-level classification tied to the vendor's line of business within vendor site details.
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 associated with domestic shelter vendor sites
- Segment vendor populations for compliance or policy analysis
- Create counts or rates of records marked as domestic shelter
Common Mistakes
- Assuming the field describes the award rather than the vendor site
- Treating the example value 0 as universally meaning false without checking the dataset's coding scheme
Query Guidance
Use explicit value checks based on the observed coding in your table, such as WHERE isDomesticShelter IN ('1','Y','TRUE') for positive cases or WHERE isDomesticShelter = 0 for numeric false if confirmed. When joining or aggregating, keep the field at the vendor-site level and avoid inferring domestic status from unrelated vendor attributes.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter AS is_domestic_shelter
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter 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.