Recovered Material Clauses
Boolean or coded flag indicating whether the award includes recovered material clauses in the solicitation or award record. In FPDS, the example value "C" indicates no recovered material clauses are included, so this field should be treated as a coded status rather than a simple free-text description.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify awards that include recovered material clauses
- Measure compliance with recycled-content or sustainable procurement requirements
- Segment awards for environmental procurement reporting
Common Mistakes
- Assuming the field is a plain yes/no boolean without checking coded values
- Treating null or blank values as equivalent to "C"
Query Guidance
Filter on the observed code values, not on the label. For example, use WHERE recoveredMaterialClauses = 'C' only if your business rule defines C as no clauses included; otherwise inspect the code set and handle nulls separately with COALESCE or explicit IS NULL logic.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__recoveredMaterialClauses AS recovered_material_clauses
FROM fpds.data
WHERE content__award__productOrServiceInformation__recoveredMaterialClauses IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__productOrServiceInformation__recoveredMaterialClauses AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__recoveredMaterialClauses 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.