Award Number

Award Number 8000 / NNM16AA02C Federal Contract Action Summary (Last 5 Years)

Award number NNM16AA02C for agency 8000 shows 89 recorded actions in the last 5 years with $1.80 billion obligated.

This award page summarizes procurement activity for award number NNM16AA02C over the last 5 years. The record shows 89 award actions and total obligations of $1,799,355,852.79.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated is displayed as both a readable rounded figure and the exact recorded amount.

Agency ID
8000
PIID
NNM16AA02C
Type
Award
Total Obligated
1.80 billion
1,799,355,852.79
Actions
89
Average Action Value
20,217,481.49

Overview

The award record for NNM16AA02C covers 89 actions in the last 5 years, with total obligations of $1,799,355,852.79. Based on those actions, the average action value is $20,217,481.49. This page is intended to support review of obligation volume and action frequency for the award.

How to use this page

Use this page to quickly assess how much funding has been obligated under award NNM16AA02C and how that activity is distributed across actions. The summary is useful for comparing this award against other records, checking activity volume, and reviewing the agency-level procurement history tied to agency 8000.

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 5 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 1,799,355,852.79 1.80 billion 89

Insight

For PIID NNM16AA02C over the 5-year window, all reported obligations are concentrated within a single agency: the National Aeronautics and Space Administration. NASA accounts for $1.80 billion across 89 awards, indicating complete agency-level concentration in the available data. This pattern suggests the award activity is fully localized to one procuring agency, with no distribution across other agencies in this dataset.

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 5 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 1,799,355,852.79 1.80 billion 89

Insight

All obligated funding in this 5-year window is concentrated with a single vendor, AEROJET ROCKETDYNE OF DE, INC (CAGE 02602). The vendor received $1.80 billion across 89 awards, indicating a highly concentrated award pattern rather than a broad supplier distribution. This level of concentration suggests sustained reliance on one contractor for this PIID within the period analyzed.

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 5 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) 1,799,355,852.79 1.80 billion 89

Insight

Over the 5-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 $1.80 billion across 89 awards, indicating a highly focused acquisition profile with no diversification across additional NAICS codes in the provided data.

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 5 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) 1,799,355,852.79 1.80 billion 89

Insight

Obligations in this 5-year window are fully concentrated in PSC AB94, R&D- Community Service/Development: Other (Engineering Development). The award accounts for $1.80 billion across 89 awards, indicating a sustained and highly concentrated engineering development workload under PIID NNM16AA02C.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 fluctuated across the five-year window, ranging from 275.92 million in 2025 to 461.84 million in 2021. Award activity was uneven as well, with counts declining from 17 in 2021 to 11 in 2023 before rising to 20 in 2024 and 26 in 2025. The pattern indicates no steady year-over-year progression; instead, funding and award volume were concentrated in select years, particularly 2021 and 2024.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.