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.
FPDS Compare
Paired Field
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.