PR Number
NASA-specific procurement request number recorded on the award. It is an identifier value used by NASA to link the award to the originating purchase request or internal requisition reference, rather than a descriptive measure.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- match awards to NASA requisitions or internal purchase requests
- reconcile FPDS awards with agency procurement systems
- identify related awards sharing the same request reference
Common Mistakes
- assuming the value describes the purchase rather than identifying it
- using the field as a cross-agency standard code when it is NASA-specific
Query Guidance
Use exact-value filters or joins when linking to requisition data, for example WHERE PRNumber = '...' or JOIN on PRNumber for matching records. If the field contains numeric-looking identifiers, preserve leading zeros by treating it as text; use COUNT(DISTINCT PRNumber) only when you want unique request references rather than award counts.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__PRNumber AS p_r_number
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__PRNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__PRNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__PRNumber 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.