Is Sheltered Workshop
Boolean or coded flag indicating whether the vendor associated with the IDV is identified as a sheltered workshop. It captures a vendor organization factor rather than award performance or pricing information. The example value 0 indicates the condition is not met.
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 IDVs awarded to sheltered workshops
- Segment vendor populations for socioeconomic analysis
- Support compliance or policy reporting on vendor status
Common Mistakes
- Assuming the field is a vendor certification rather than a record-level indicator
- Filtering without checking whether the data is stored as numeric, text, or null values
Query Guidance
Use a direct equality filter against the observed true value in your data, such as = 1, = 'Y', or = 'true'. Include IS NULL checks if you need to distinguish unknown from false, and verify the encoded domain before writing production SQL.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop AS is_sheltered_workshop
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isShelteredWorkshop AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.