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.

Family: IDV
Category: Legislative Mandates
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue
Title
Additional Reporting Value
FPDS Path
IDV/legislativeMandates/listOfAdditionalReportingValues/additionalReportingValue
Description
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.
Business Meaning
This field helps analysts identify and segment IDVs that carry special legislative reporting requirements or supplemental reporting classifications. It can support compliance reviews, mandate-based filtering, and broader pattern analysis across awards subject to specific statutory reporting rules.
Example Value
NONE
Observed Non-Null Count
1,308,242

FPDS Compare

FPDS Query Variable
content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue
FPDS XML Path
IDV/legislativeMandates/listOfAdditionalReportingValues/additionalReportingValue
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/legislativeMandates/listOfAdditionalReportingValues/additionalReportingValue' into the SQL-ready variable 'content__IDV__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue'.

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.