PIID
Identifier of the referenced Indefinite Delivery Vehicle (IDV) procurement instrument associated with the award record. It stores the PIID for the parent or underlying IDV contract that this award references, rather than the award's own PIID.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Link orders or actions to the parent IDV contract
- Aggregate obligations by contract vehicle
- Filter records referencing a specific IDV PIID
Common Mistakes
- Using it as the award's own PIID
- Casting the value to a numeric type or trimming leading characters
Query Guidance
Use exact string matching or joins on this field when tying a record to its referenced IDV. In SQL, compare it as a text key and pair it with award type, parent award ID, or related description fields to validate the intended contract hierarchy.
SQL Examples
Preview values
SELECT
content__award__awardID__referencedIDVID__PIID AS p_i_i_d
FROM fpds.data
WHERE content__award__awardID__referencedIDVID__PIID IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__awardID__referencedIDVID__PIID AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__awardID__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.