Labor Standards Description
Human-readable text that explains the value recorded in the paired Labor Standards field. It is the descriptive label for the coded or selected labor-standards status in the IDV legislative mandates section.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting the coded Labor Standards indicator in FPDS
- Reviewing whether labor standards were applied or not applied
- Supporting compliance and regulatory reporting by award
Common Mistakes
- Using the description field as the authoritative categorical value instead of the paired code
- Grouping on free-text descriptions without normalizing variant labels
Query Guidance
Select this field alongside the paired Labor Standards code for display or validation. In SQL, use it for readable output and QA checks, but group or filter on the underlying coded field when possible; if needed, normalize text with CASE/trim/lower logic before aggregation.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__laborStandards__description AS labor_standards_description
FROM fpds.data
WHERE content__IDV__legislativeMandates__laborStandards__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__laborStandards__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__laborStandards__description IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.