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.

Family: IDV
Category: NASA Specific Fields
Data Type: identifier_or_code
Semantic Type: identifier
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber
Title
Offerors Proposal Number
FPDS Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/offerorsProposalNumber
Description
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.
Business Meaning
This field helps analysts connect the IDV to NASA's internal proposal, award, or reconciliation processes. It can support traceability across procurement documents when matching NASA-specific records that may not be fully identifiable using standard FPDS fields alone.
Example Value
4200711346
Observed Non-Null Count
321

FPDS Compare

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber
FPDS XML Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/offerorsProposalNumber
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/agencySpecificIDVElements/NASASpecificIDVElements/offerorsProposalNumber' into the SQL-ready variable 'content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__offerorsProposalNumber'.

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.