Recovered Material Clauses Description
Human-readable description for the award-level Recovered Material Clauses field. It labels the clause status associated with recovered material requirements and is the descriptive counterpart to a coded value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decode the recovered material clauses code into a readable status
- Flag awards that include sustainability or recycled-content clause language
- Support compliance or policy reporting on environmentally preferable purchasing
Common Mistakes
- Using the description field as if it were the authoritative coded value
- Filtering on text alone without checking the paired code field or exact observed labels
Query Guidance
Use this field for display, grouping, or code translation, not for primary logic when a paired code field exists. In SQL, match exact text carefully, normalize case if needed, and join or compare against the coded sibling field to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__recoveredMaterialClauses__description AS recovered_material_clauses_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__recoveredMaterialClauses__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__recoveredMaterialClauses__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.