This award page summarizes procurement activity for PIID NNM07AA75C during the last 5 years. The record shows 108 award actions with total obligated amounts of 545.16 million dollars.
Award Number
Award Number 8000 / NNM07AA75C Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award NNM07AA75C under agency ID 8000, showing obligated dollars and action activity over the last 5 years.
Figures are based on the provided analysis window and reported totals; the average action value is 5,047,816.67 dollars.
Overview
Over the last 5 years, award NNM07AA75C recorded 108 actions and 545,164,200 dollars in obligated amounts. The average action value across the period was 5,047,816.67 dollars, indicating repeated procurement activity tied to the same award identifier.
How to use this page
Use this page to review award-level spending and action counts for PIID NNM07AA75C within agency ID 8000. The totals support basic budget tracking, award monitoring, and cross-checking of procurement activity over the selected period.
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 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 | 545,164,200.00 | 545.16 million | 108 |
Insight
Over the 5-year window, obligations for PIID NNM07AA75C are fully concentrated within the National Aeronautics and Space Administration, which accounts for the entire reported total of $545.16 million across 108 awards. This indicates no observed distribution across additional agencies in the provided data. The funding profile is therefore highly centralized at a single agency, suggesting a sustained NASA-centric award pattern for this PIID.
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 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 |
|---|---|---|---|---|
| ATK LAUNCH SYSTEMS INCORPORATED | 07703 | 313,442,874.00 | 313.44 million | 43 |
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 8L7H4 | 231,721,326.00 | 231.72 million | 65 |
Insight
Obligations under PIID NNM07AA75C are concentrated among two vendors over the 5-year window. ATK Launch Systems Incorporated received $313.44 million across 43 awards, while Northrop Grumman Systems Corporation received $231.72 million across 65 awards, indicating substantial dollar concentration with a higher award count for Northrop Grumman. Together, these vendors account for the identifiable obligated amounts in the provided rows and suggest a comparatively narrow supplier base for this award.
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 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 |
|---|---|---|---|---|
| 336415 | GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING | 545,164,200.00 | 545.16 million | 108 |
Insight
Over the 5-year window for award NNM07AA75C, obligations are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. This NAICS accounts for $545.16 million across 108 awards, indicating a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The recurring award count suggests sustained activity within this industrial classification rather than a one-time obligation spike.
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 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 |
|---|---|---|---|---|
| AR11 | SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH | 545,164,200.00 | 545.16 million | 108 |
Insight
Obligations for PIID NNM07AA75C over the 5-year window are concentrated in PSC AR11, Space R&D Services for space flight, research, and supporting activities/basic research. AR11 accounts for $545.16 million across 108 awards, indicating a sustained and highly concentrated reliance on this service category. The volume of awards suggests recurring support activity rather than a one-time obligation pattern.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 on PIID NNM07AA75C declined materially over the 5-year window, falling from $226.50 million in 2021 to $15.33 million in 2025. Annual award counts were uneven, ranging from 17 to 33 awards, with a low of 17 in 2022 and 2024 and a higher count of 22 in 2025 despite the much lower obligated amount. The pattern indicates a shift from a high-obligation year in 2021 to a more fragmented but lower-dollar award profile in later 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.