Additional Reporting Value
A free-text value recorded under Legislative Mandates that identifies an additional reporting value associated with the IDV. It captures the human-readable content supplied for a mandate-related reporting element, rather than a numeric metric or control value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filter IDVs with specific legislative reporting values
- group awards by mandate-related reporting category
- identify records with no additional reporting value, such as NONE
Common Mistakes
- assuming the field is a numeric code or quantified measure
- grouping raw text without normalizing capitalization, spacing, or synonymous labels
Query Guidance
Use string comparisons, trimming, and case normalization in SQL. For example, filter with UPPER(TRIM(content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue)) = 'NONE' or aggregate on a cleaned version of the field when building mandate-based summaries.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue AS additional_reporting_value
FROM fpds.data
WHERE content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue 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.