Is Sheltered Workshop
Boolean or coded flag indicating whether the vendor organization is identified as a sheltered workshop in the FPDS record. It captures a specific vendor status at the site/organization factor level rather than a contract action outcome.
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 records for sheltered workshop vendors
- Segment vendor population by organizational status
- Support compliance and socio-economic reporting analyses
Common Mistakes
- Confusing this vendor status flag with contract set-aside or socioeconomic program codes
- Assuming missing values mean false rather than unknown or not reported
Query Guidance
Use explicit boolean filtering or code mapping, for example WHERE isShelteredWorkshop IN (1, 'Y', 'true') when identifying sheltered workshops. To avoid misclassification, separate false, null, and unreported values in analysis and confirm the dataset's coded value conventions before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop AS is_sheltered_workshop
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop 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.