This page summarizes federal procurement activity for award number NNM16AA02C under Agency ID 8000 over the last 10 years. The award shows 156 actions and total obligated funding of 3.11 billion dollars.
Award Number
Award Number 8000 / NNM16AA02C Federal Contract Action Summary (Last 10 Years)
Procurement summary for award number NNM16AA02C under Agency ID 8000, covering the last 10 years of obligation and action activity.
Amounts are based on the provided readable total obligated value of 3,113,868,882.49 and the average action value of 19,960,697.96.
Overview
Over the last 10 years, award number NNM16AA02C under Agency ID 8000 recorded 156 award actions. Total obligated amount reached 3,113,868,882.49, with an average action value of 19,960,697.96. This page provides a compact view of the award’s obligation profile and action volume.
How to use this page
Use this page to review the scale and activity level associated with award NNM16AA02C. The figures support quick comparisons across awards, tracking of obligation volume, and basic review of action frequency over the selected analysis window.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNM16AA02C'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
agency_id,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 3,113,868,882.49 | 3.11 billion | 156 |
Insight
For PIID NNM16AA02C over the 10-year window, all reported obligation is concentrated in a single agency: NASA, with $3.11 billion across 156 awards. This indicates the award activity is fully centralized within one department-level buyer, with no evidence of interagency distribution in the provided data. The award count suggests repeated obligating activity under the same agency relationship rather than a broad customer base.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNM16AA02C'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| AEROJET ROCKETDYNE OF DE, INC | 02602 | 3,010,868,882.49 | 3.01 billion | 145 |
| AEROJET ROCKETDYNE OF DE, INC | 103,000,000.00 | 103.00 million | 11 |
Insight
AEROJET ROCKETDYNE OF DE, INC is the dominant vendor in this 10-year period, accounting for $3.01 billion across 145 awards. An additional $103.00 million is associated with the same vendor name but without a CAGE code, across 11 awards, indicating some distribution of obligations under the vendor identity outside the coded record. Overall, obligations are highly concentrated in a single vendor, with most activity tied to CAGE 02602.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNM16AA02C'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
naics_code,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 3,113,868,882.49 | 3.11 billion | 156 |
Insight
Over the 10-year window, obligations for award NNM16AA02C are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $3.11 billion across 156 awards, indicating a highly concentrated procurement profile rather than a diversified industry mix. The volume of awards suggests repeated use of the same R&D classification over time.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNM16AA02C'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| AB94 | R&D- COMMUNITY SERVICE/DEVELOPMENT: OTHER (ENGINEERING DEVELOPMENT) | 3,113,868,882.49 | 3.11 billion | 156 |
Insight
Over the 10-year window, obligations under PIID NNM16AA02C are concentrated entirely in PSC AB94, with $3.11 billion across 156 awards. This indicates a highly focused procurement profile rather than a diversified mix of product or service categories. The volume of awards alongside the total obligated value suggests repeated use of the same R&D category over time.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '8000' AND content__award__awardID__awardContractID__PIID = 'NNM16AA02C'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 163,500,000.00 | 163.50 million | 14 |
| 2017 | 222,868,000.00 | 222.87 million | 12 |
| 2018 | 250,868,890.00 | 250.87 million | 10 |
| 2019 | 296,355,960.00 | 296.36 million | 14 |
| 2020 | 380,920,179.70 | 380.92 million | 17 |
| 2021 | 461,838,805.19 | 461.84 million | 17 |
| 2022 | 277,795,598.60 | 277.80 million | 15 |
| 2023 | 338,089,724.00 | 338.09 million | 11 |
| 2024 | 445,710,761.00 | 445.71 million | 20 |
| 2025 | 275,920,964.00 | 275.92 million | 26 |
Insight
Obligations for PIID NNM16AA02C increased from 163.50 million in 2016 to a peak of 461.84 million in 2021, indicating a sustained upward trend through the first six years of the window. After 2021, obligated dollars declined in 2022, rebounded in 2023 and 2024, then fell again in 2025 to 275.92 million, while award counts rose to a high of 26 in 2025. This pattern suggests spending remains concentrated in a small number of annual periods, with 2021 and 2024 representing the highest obligation years.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.