Status
A transaction-level status indicator for the IDV record. It shows the current processing or lifecycle state of the transaction in FPDS; the example value "F" suggests the field may use coded values rather than free text.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering records to a specific transaction state
- grouping awards or modifications by lifecycle status
- excluding inactive or non-final transactions from analysis
Common Mistakes
- assuming the value is human-readable text rather than a code
- using status without confirming the meaning of each observed code
Query Guidance
Use this field in WHERE or CASE logic after validating the codebook or observed values for the reporting period. If the dataset includes a companion description field, join or compare against it; otherwise, maintain a lookup table of status codes and filter explicitly rather than using broad string matches.
SQL Examples
Preview values
SELECT
content__IDV__transactionInformation__status AS status
FROM fpds.data
WHERE content__IDV__transactionInformation__status IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__transactionInformation__status AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__transactionInformation__status 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.