Procurement Placement Code
A NASA-specific coded identifier recorded on an IDV to indicate the procurement placement classification or reference value assigned by NASA. It is not a general FPDS-wide procurement attribute; it exists to support NASA internal administration and tracking.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- NASA-specific IDV record interpretation
Common Usage
- NASA internal reconciliation of IDV records
- Classification or routing analysis for NASA procurement workflows
- Filtering IDVs by NASA-specific placement code
Common Mistakes
- Assuming the code is a universal FPDS procurement category
- Interpreting the numeric value as a rank, amount, or date
Query Guidance
Use the field as a filter or join key against NASA code-reference tables when available, for example WHERE procurementPlacementCode = '99'. In SQL, compare as a string unless the source schema explicitly stores it as numeric, and be prepared for nulls or unmapped codes.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__procurementPlacementCode AS procurement_placement_code
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__procurementPlacementCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__procurementPlacementCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__procurementPlacementCode 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.