System Equipment Code Description
Human-readable description associated with the System Equipment Code on the award record. It is the label text that explains the coded value stored in the paired System Equipment Code field.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display the label for a coded equipment category in reports
- Validate the meaning of the paired System Equipment Code
- Support descriptive filtering or QA checks on coded award data
Common Mistakes
- Using the description field as a surrogate key for grouping instead of the code
- Assuming the description is standardized if the observed values vary across records
Query Guidance
Join or select this field alongside the paired System Equipment Code. In SQL, group and filter on the code when possible, and use the description for display, validation, or troubleshooting; if the code appears abbreviated or inconsistent, compare the observed descriptions before hard-coding logic.
SQL Examples
Preview values
SELECT
content__award__productOrServiceInformation__systemEquipmentCode__description AS system_equipment_code_description
FROM fpds.data
WHERE content__award__productOrServiceInformation__systemEquipmentCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__productOrServiceInformation__systemEquipmentCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__productOrServiceInformation__systemEquipmentCode__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.