Recovered Material Clauses Description
Human-readable description for the recovered material clauses value recorded on an IDV. It is the text label paired with the coded Recovered Material Clauses field, translating the underlying status into readable form.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Translate coded recovered material clause values into readable labels
- Identify awards that include or exclude sustainability-related clauses
- Support compliance and policy coverage reporting
Common Mistakes
- Treating the description as the canonical code instead of the paired text label
- Aggregating on free-text descriptions without normalizing the underlying coded field
Query Guidance
Join or select this field together with the paired recovered material clauses code when possible. In SQL, use it for display, validation, and grouped reporting by clause status, but base filters and joins on the coded field or a normalized derived value to avoid text variations.
SQL Examples
Preview values
SELECT
content__IDV__productOrServiceInformation__recoveredMaterialClauses__description AS recovered_material_clauses_description
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__recoveredMaterialClauses__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__productOrServiceInformation__recoveredMaterialClauses__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__productOrServiceInformation__recoveredMaterialClauses__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.