PIID
Identifier of the referenced IDV contract’s Procurement Instrument Identifier (PIID). It is the code that names the parent ordering vehicle or base indefinite delivery vehicle record to which this contract record points.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Join referenced actions to the parent IDV contract
- Group obligations by contract vehicle
- Filter records linked to a specific IDV
Common Mistakes
- Assuming the value is human-readable rather than a code
- Joining on this field alone when the full contract key is required
Query Guidance
Use exact equality joins and filters on the identifier value, typically against the parent IDV PIID or full contract identifier key. If the dataset contains case or formatting variation, normalize before joining; do not use text searches unless you are deliberately doing pattern-based review.
SQL Examples
Preview values
SELECT
content__IDV__contractID__referencedIDVID__PIID AS p_i_i_d
FROM fpds.data
WHERE content__IDV__contractID__referencedIDVID__PIID IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractID__referencedIDVID__PIID AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractID__referencedIDVID__PIID 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.