Additional Reporting Value Description
Human-readable description associated with an Additional Reporting Value on the award record. It is the text label for the coded or abbreviated value stored in the paired Additional Reporting Value field.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decoding the meaning of additional reporting codes on award records
- Filtering awards by specific reporting categories or exceptions
- Validating agency reporting completeness and consistency
Common Mistakes
- Using the description field as if it were the coded value for joins or grouping
- Assuming the text label is standardized across all agencies or reporting periods
Query Guidance
Use this field for display, filtering by readable labels, and QA checks; join or group on the paired code field when available, and use DISTINCT to inspect the set of observed descriptions before building logic. In SQL, prefer selecting both the code and description together so you can validate mappings and avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description AS additional_reporting_value_description
FROM fpds.data
WHERE content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__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.