Use of EPA Designated Products Description
Human-readable description for the coded value stored in the paired "Use of EPA Designated Products" field. It identifies the specific status or explanation associated with EPA-designated product usage on an award record.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Interpreting EPA-designated product compliance on award records
- Validating coded sustainability fields against their human-readable labels
- Filtering awards by reported use, non-use, or exemption status
Common Mistakes
- Using the description field alone as if it were the underlying categorical code
- Assuming the text value is fully standardized across all records and agencies
Query Guidance
Use this field for display, validation, and text-based review, but join or filter on the paired coded field when possible. In SQL, search this column for expected phrases such as 'REQUIRED' or 'NOT REQUIRED' only after confirming the companion code field and accounting for case and formatting differences.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__useOfEPADesignatedProducts__description AS use_of_e_p_a_designated_products_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__useOfEPADesignatedProducts__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__useOfEPADesignatedProducts__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__useOfEPADesignatedProducts__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.