Labor Standards Description
Human-readable description for the Labor Standards field within Award legislative mandates. This is the explanatory text paired with the underlying labor standards indicator, such as a coded yes/no or similar abbreviated value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Validate the meaning of the labor standards indicator on an award
- Support filtering or reporting on awards with labor standards requirements
- Cross-check coded values against the human-readable description for data quality
Common Mistakes
- Using the description field as if it were the authoritative code value
- Assuming every non-empty description represents a distinct business status
Query Guidance
Select this field alongside the paired labor standards code when reviewing records. In SQL, use it for display, validation, or grouped checks on textual values, but filter on the underlying coded field when possible to avoid inconsistencies in free-text or duplicated labels.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__laborStandards__description AS labor_standards_description
FROM fpds.data
WHERE content__award__legislativeMandates__laborStandards__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__legislativeMandates__laborStandards__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.