Offerors Proposal Number
A NASA-specific identifier that stores the offeror's proposal number associated with an IDV record. It is an internal reference used by NASA to link the agreement to a particular proposal or administrative tracking record.
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
- Link NASA IDV records to proposal or administrative tracking records
- Reconcile NASA-specific procurement extracts with internal systems
- Filter or group NASA agreements by proposal reference
Common Mistakes
- Assuming the value is a universal FPDS contract identifier
- Using it as a surrogate key without checking agency-specific scope and uniqueness
Query Guidance
Use this field in WHERE clauses, joins, or grouping only when analyzing NASA-specific records and after confirming value consistency. In SQL, compare it as a string or identifier and pair it with other award keys such as PIID, UEI/DUNS-related fields, and modification identifiers to avoid false matches.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber AS offerors_proposal_number
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber 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.