Version
Stores the version identifier for an award record in FPDS. It indicates which iteration of the award record is being referenced as the record is created, updated, or resubmitted.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Selecting the latest record for each award
- Tracking award record revisions over time
- Deduplicating versioned FPDS extracts
Common Mistakes
- Using it as a business measure of contract amendments
- Grouping awards without first accounting for multiple versions
Query Guidance
Use with the award identifier to partition records and rank by version when keeping the current row, for example with ROW_NUMBER() OVER (PARTITION BY award_id ORDER BY version DESC). Cast carefully if the source stores the value as text, and do not aggregate across versions unless the analysis explicitly requires all historical states.
SQL Examples
Preview values
SELECT
content__award__version AS version
FROM fpds.data
WHERE content__award__version IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__version AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__version 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.