Accession Number
NASA accession number recorded on the IDV as an internal identifier for the agreement record. It is a structured reference used by NASA to track and link procurement documentation across systems.
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
- Linking FPDS IDV records to NASA internal procurement repositories
- Reconciling award documents during audit or compliance reviews
- Filtering NASA IDVs by a known accession number
Common Mistakes
- Using the field as a unique government-wide award identifier
- Normalizing or truncating the value and breaking exact-match joins
Query Guidance
Filter with exact string comparison when the accession number is known, and store/search it as a text field to preserve punctuation and leading zeros. For joins, match on the full raw value and avoid casting to numeric types; if multiple NASA-specific identifiers are available, combine them with other award keys rather than relying on this field alone.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__accessionNumber AS accession_number
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__accessionNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__accessionNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__accessionNumber 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.