Award Number

Award Number 8000 / NNM07AA75C Federal Contract Action Summary (Last 10 Years)

Award number NNM07AA75C for agency 8000 shows 252 actions over the last 10 years, with $1.86 billion obligated in total.

This page summarizes procurement activity for award number NNM07AA75C under agency 8000 across the last 10 years. The award has 252 recorded actions and $1,858,815,857 in total obligated value, with an average action value of $7,376,253.40.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided analysis window and obligated totals for award number NNM07AA75C.

Agency ID
8000
PIID
NNM07AA75C
Type
Award
Total Obligated
1.86 billion
1,858,815,857.00
Actions
252
Average Action Value
7,376,253.40

Overview

Award number NNM07AA75C is associated with agency 8000 and records 252 actions in the last 10 years. Total obligated value is $1,858,815,857, with an average action value of $7,376,253.40. These figures provide a concise view of the award’s activity and funding scale.

How to use this page

Use this page to review the award’s obligated value, action count, and average action size within the stated analysis window. It is useful for identifying the overall magnitude of activity tied to NNM07AA75C and for comparing it with other awards or agency records. The page is based only on the provided award-level inputs.

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 = 'NNM07AA75C'
    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 1,858,815,857.00 1.86 billion 252

Insight

For PIID NNM07AA75C over the 10-year window, obligations are fully concentrated within a single top agency: the National Aeronautics and Space Administration. NASA accounts for $1.86 billion across 252 awards, indicating a highly concentrated award pattern with no additional agency diversification reflected in this section.

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 = 'NNM07AA75C'
        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
ATK LAUNCH SYSTEMS INCORPORATED 07703 1,353,530,451.00 1.35 billion 159
ATK LAUNCH SYSTEMS INCORPORATED 273,564,080.00 273.56 million 28
NORTHROP GRUMMAN SYSTEMS CORPORATION 8L7H4 231,721,326.00 231.72 million 65

Insight

Obligations are highly concentrated in ATK Launch Systems Incorporated, which accounts for the largest share across the 10-year window with $1.35 billion across 159 awards, plus an additional $273.56 million across 28 awards under the same vendor name without a CAGE code. Northrop Grumman Systems Corporation is a distant third at $231.72 million across 65 awards, indicating a steep drop-off after the leading supplier. Overall, the award history is dominated by a small number of vendors, with spending concentrated primarily in ATK Launch Systems Incorporated.

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 = 'NNM07AA75C'
    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
336415 GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING 1,858,815,857.00 1.86 billion 252

Insight

Over the 10-year window, obligations for award NNM07AA75C are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. This category accounts for $1.86 billion across 252 awards, indicating a sustained and highly focused procurement profile with no other NAICS reported in this section.

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 = 'NNM07AA75C'
    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
AR11 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (BASIC RESEARCH) 1,313,651,657.00 1.31 billion 139
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 545,164,200.00 545.16 million 113

Insight

The award is heavily concentrated in PSC AR11-related research activities over the 10-year window. The two listed AR11 descriptions account for 252 awards and a combined $1.86 billion in obligations, with the first description representing the larger share at $1.31 billion across 139 awards. This distribution indicates sustained funding emphasis within basic space/aeronautics R&D rather than a broad mix of PSCs.

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 = 'NNM07AA75C'
    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 273,260,543.00 273.26 million 24
2017 248,537,079.00 248.54 million 28
2018 262,635,994.00 262.64 million 26
2019 299,476,566.00 299.48 million 34
2020 229,741,475.00 229.74 million 32
2021 226,499,616.00 226.50 million 33
2022 119,465,050.00 119.47 million 17
2023 117,044,277.00 117.04 million 19
2024 66,829,794.00 66.83 million 17
2025 15,325,463.00 15.33 million 22

Insight

Obligations under PIID NNM07AA75C were concentrated in the earlier part of the 10-year window, peaking at $299.48 million in 2019 before declining in subsequent years. After remaining above $226.50 million in 2020–2021, obligated dollars fell sharply to $119.47 million in 2022 and continued downward to $15.33 million in 2025. Award counts were relatively steady and even increased in some later years, indicating that the decline in obligated value was driven more by lower dollar amounts per award than by a sustained drop in award activity.

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.