Status

Human-readable status code for the Other Transaction IDV transaction record. It indicates the current state or processing condition of the transaction, rather than describing the award itself.

Family: Other Transaction IDV
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__transactionInformation__status
Title
Status
FPDS Path
OtherTransactionIDV/contractDetail/transactionInformation/status
Description
Human-readable status code for the Other Transaction IDV transaction record. It indicates the current state or processing condition of the transaction, rather than describing the award itself.
Business Meaning
This field helps analysts distinguish active, completed, inactive, or otherwise noncurrent records when measuring obligations, awards, or portfolio activity. It is especially useful for filtering datasets to the records that should be included in reporting and for understanding whether a transaction is part of the final analyzable award history.
Example Value
F
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__transactionInformation__status
FPDS XML Path
OtherTransactionIDV/contractDetail/transactionInformation/status
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/transactionInformation/status' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__transactionInformation__status'.

Use Cases

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

Common Usage

  • filtering to active or finalized transaction records
  • grouping records by processing state
  • excluding cancelled, draft, or incomplete transactions from metrics

Common Mistakes

  • treating the code as a narrative description instead of a status indicator
  • including all status values in award counts without validating which codes are in-scope

Query Guidance

Use this field in WHERE clauses or CASE logic to include only the transaction statuses relevant to the analysis. If the extract includes a separate description field, join or inspect it to confirm code meanings before hard-coding filters.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__transactionInformation__status AS status
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__transactionInformation__status IS NOT NULL
LIMIT 25

Top values

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