Additional Reporting Value

String value that captures an additional reporting value associated with the award’s legislative mandates data. It is used as a free-text or coded entry to record mandate-related reporting information beyond the primary structured fields.

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

Variable Overview

FPDS Query Variable
content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue
Title
Additional Reporting Value
FPDS Path
award/legislativeMandates/listOfAdditionalReportingValues/additionalReportingValue
Description
String value that captures an additional reporting value associated with the award’s legislative mandates data. It is used as a free-text or coded entry to record mandate-related reporting information beyond the primary structured fields.
Business Meaning
This field helps analysts identify award records that carry special reporting or compliance information under legislative mandate requirements. It can support segmentation of awards for oversight, policy reporting, and workflow rules tied to mandate-specific procurement analysis.
Example Value
NONE
Observed Non-Null Count
49,494,366

FPDS Compare

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

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Filter awards with mandate-related reporting entries
  • Group awards by reported mandate value
  • Validate whether a mandate field is populated with expected codes such as NONE

Common Mistakes

  • Assuming the value is always plain language rather than coded
  • Using the field as a stand-alone category without checking related mandate fields

Query Guidance

Use exact matching for known values and normalize case or whitespace when comparing strings. If the dataset contains paired description fields, join or select them together; for aggregations, distinct-count and frequency checks are usually more useful than text parsing.

SQL Examples

Preview values

SELECT
    content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue AS additional_reporting_value
FROM fpds.data
WHERE content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue IS NOT NULL
LIMIT 25

Top values

SELECT
    content__award__legislativeMandates__listOfAdditionalReportingValues__additionalReportingValue AS value,
    count() AS record_count
FROM fpds.data
WHERE content__award__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.