Construction Wage Rate Requirements
Indicates whether the award is subject to construction wage rate requirements under the applicable labor statute. In FPDS, the value is stored as a flag; a coded value such as "X" means the requirement is not applicable rather than a plain yes/no label.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter construction awards subject to wage rate requirements
- Exclude not-applicable awards from compliance analyses
- Segment awards by labor mandate applicability
Common Mistakes
- Assuming "X" means yes instead of not applicable
- Using the field without checking for blanks or other coded values
Query Guidance
Use explicit value checks in SQL, for example WHERE constructionWageRateRequirements <> 'X' to identify records where the requirement may apply, and WHERE constructionWageRateRequirements = 'X' for not-applicable records. Include NULL handling and confirm the code set in the source extract before drawing compliance conclusions.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__constructionWageRateRequirements AS construction_wage_rate_requirements
FROM fpds.data
WHERE content__award__legislativeMandates__constructionWageRateRequirements IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__legislativeMandates__constructionWageRateRequirements AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__legislativeMandates__constructionWageRateRequirements 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.