Award Number

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

Federal procurement analysis for award number NNM16AA02C under agency ID 8000, covering the last full year of recorded activity.

This page summarizes award number NNM16AA02C for agency ID 8000 over the last full year. The award shows 26 actions with total obligated value of 275.92 million and an average action value of 10,612,344.77.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and use the exact total obligated amount of 275920964.

Agency ID
8000
PIID
NNM16AA02C
Type
Award
Total Obligated
275.92 million
275,920,964.00
Actions
26
Average Action Value
10,612,344.77

Overview

Award number NNM16AA02C is associated with agency ID 8000 and shows recorded activity in the last full year. The award total obligated amount is 275,920,964, with 26 actions and an average action value of 10,612,344.77. This page is intended to support FPDS-style review of award-level procurement activity.

How to use this page

Use this page to review the award’s obligation level and action volume within the stated analysis window. The figures support quick comparison against other awards, especially when evaluating total dollars obligated and the distribution of action values. All values shown here are limited to the inputs provided for this award record.

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 1 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 275,920,964.00 275.92 million 26

Insight

Within the 1-year window for award NNM16AA02C, all reported obligations are concentrated in a single top agency: the National Aeronautics and Space Administration. NASA accounts for $275.92 million across 26 awards, indicating that obligation activity is fully concentrated within this agency in the provided data. This pattern suggests a narrow agency distribution rather than a diversified award 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 1 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 275,920,964.00 275.92 million 26

Insight

Over the 1-year window, obligations for PIID NNM16AA02C are fully concentrated with AEROJET ROCKETDYNE OF DE, INC (CAGE 02602). This vendor accounts for $275.92 million across 26 awards, indicating repeated funding activity to a single supplier rather than a broad distribution of obligated dollars.

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 1 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) 275,920,964.00 275.92 million 26

Insight

Over the past 1 year, obligations for this award are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). The award recorded 26 actions totaling $275.92 million, indicating a highly focused procurement profile rather than a diversified NAICS mix.

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 1 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) 275,920,964.00 275.92 million 26

Insight

Obligations in the past year for PIID NNM16AA02C are fully concentrated in PSC AB94, R&D- Community Service/Development: Other (Engineering Development), totaling $275.92 million across 26 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award mix suggests repeated obligations under a single engineering development R&D category rather than a broad spend distribution.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 275,920,964.00 275.92 million 26

Insight

For PIID NNM16AA02C within the past year, total obligations are concentrated in 2025, with $275.92 million obligated across 26 awards. This indicates a relatively high dollar volume spread across a moderate number of awards in the reported period, with no other years available in the window to indicate year-over-year change.

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