Accession Number
NASA-specific accession number recorded on the award. It serves as an internal identifier or reference key associated with the award record rather than a descriptive measure of contract performance.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Matching FPDS awards to NASA internal award records
- Identifying agency-specific administrative references
- Supporting data validation and deduplication
Common Mistakes
- Using the value as a measure of award size, status, or performance
- Assuming identical meaning across agencies or systems
Query Guidance
Use in SELECT, JOIN, and WHERE clauses for record linkage or filtering on NASA-specific references. If the field is stored as text, compare as a string and avoid numeric assumptions; if multiple NASA award elements exist, inspect companion identifier fields and observed value patterns before building joins.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__accessionNumber AS accession_number
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__accessionNumber IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__accessionNumber AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__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.