Is Domestic Shelter
Boolean or coded flag indicating whether the vendor's site line of business is classified as domestic shelter services. It identifies the presence of that specific vendor characteristic on the FPDS record rather than a dollar amount, organization, or award action.
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 vendors classified as domestic shelter providers
- Segment vendor population for compliance or socioeconomic analysis
- Compare obligation patterns across specialized vendor categories
Common Mistakes
- Assuming a missing or zero value proves the vendor is not domestic shelter rather than unknown or not reported
- Using the human-readable label instead of the coded value in SQL filters
Query Guidance
Use explicit boolean or code comparisons based on the source system's stored representation, for example where the field equals 1, 'Y', or the documented affirmative code. Include null handling if you need to separate false from unknown, and inspect sample values or the paired description field before writing filters.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter AS is_domestic_shelter
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isDomesticShelter AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.