Is Labor Surplus Area Firm
Boolean or coded flag indicating whether the vendor is identified as a labor surplus area firm in the award record's vendor site details. It marks the presence of this socioeconomic/business classification for the vendor associated with the award.
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 to vendors classified as labor surplus area firms
- Aggregate spend or count awards by labor surplus area status
- Support compliance or socioeconomic category reporting
Common Mistakes
- Interpreting the flag as the vendor's physical location rather than a classification status
- Treating null, blank, and false as equivalent without checking the dataset's coding rules
Query Guidance
Use the field in WHERE clauses as a boolean/coded filter, e.g., = 1 or = 'true' depending on the extract. If the feed stores coded values, inspect distinct values first and normalize them before aggregation; when joining or grouping, preserve nulls separately from explicit non-matches.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isLaborSurplusAreaFirm AS is_labor_surplus_area_firm
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isLaborSurplusAreaFirm IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isLaborSurplusAreaFirm AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__isLaborSurplusAreaFirm 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.