Additional Reporting Value Description
Human-readable description for the paired "Additional Reporting Value" code in the IDV Legislative Mandates section. It identifies the meaning of the reported value, such as a full text label or explanatory phrase corresponding to a coded or abbreviated entry.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decode or label the associated Additional Reporting Value
- Review legislative mandate reporting details on IDVs
- Map source-system values to analyst-friendly text
Common Mistakes
- Using the description as a unique business key
- Filtering on this text when the paired code is the more stable field
Query Guidance
Use this field for display, grouping, or decoding after joining or selecting the paired Additional Reporting Value code. In SQL, keep the code as the primary filter or join key and use this description for labeling, validation, or CASE-mapping when codes are ambiguous.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description AS additional_reporting_value_description
FROM fpds.data
WHERE content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.