Award number NNM07AA75C recorded 22 award actions in the last full year. Total obligations were $15.33 million, with an average action value of $696,611.95.
Award Number
Award Number 8000 / NNM07AA75C Federal Contract Action Summary (Last Year)
Analyst summary for award number NNM07AA75C under agency ID 8000, covering the last full year of obligation activity.
Figures reflect the analysis window of the last full year and use the provided exact obligation total of 15,325,463.
Overview
The award record for NNM07AA75C shows 22 actions during the last full year, indicating repeated obligation activity across the period. Total obligated dollars were $15,325,463, which averages to $696,611.95 per action. This page is organized for quick review of award-level activity tied to agency ID 8000.
How to use this page
Use this page to review the award number, total obligations, and action count without moving into more detailed transaction records. It is useful for comparing award activity over the last full year against other awards in the same agency set or monitoring obligation volume over time.
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 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 | 15,325,463.00 | 15.33 million | 22 |
Insight
Within the 1-year window, all reported obligations for PIID NNM07AA75C are concentrated at a single top agency: the National Aeronautics and Space Administration. NASA accounts for $15.33 million across 22 awards, indicating a fully concentrated distribution in the provided data. This suggests the award’s obligated activity is entirely associated with one agency rather than spread across multiple agencies.
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 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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 8L7H4 | 15,325,463.00 | 15.33 million | 22 |
Insight
Obligations for PIID NNM07AA75C over the 1-year window are fully concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8L7H4). The vendor received $15.33 million across 22 awards, indicating repeated obligation activity rather than a one-time award. With no other vendors listed, this award’s obligation profile is entirely dependent on a single contractor.
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 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 |
|---|---|---|---|---|
| 336415 | GUIDED MISSILE AND SPACE VEHICLE PROPULSION UNIT AND PROPULSION UNIT PARTS MANUFACTURING | 15,325,463.00 | 15.33 million | 22 |
Insight
Over the past 1 year, obligations for award NNM07AA75C are fully concentrated in NAICS 336415, Guided Missile and Space Vehicle Propulsion Unit and Propulsion Unit Parts Manufacturing. The award records 22 actions in this NAICS, totaling $15.33 million. This indicates a narrow industrial focus 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 = 'NNM07AA75C'
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 |
|---|---|---|---|---|
| AR11 | SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH | 15,325,463.00 | 15.33 million | 22 |
Insight
Obligations are fully concentrated in PSC AR11, indicating all reported activity in the 1-year window was placed under Space R&D services for space flight, research, and supporting activities, basic research. The award accounted for $15.33 million across 22 actions, suggesting repeated funding within a single PSC category rather than a diversified procurement mix. This concentration indicates the award is focused on a narrowly defined technical mission area.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 15,325,463.00 | 15.33 million | 22 |
Insight
For PIID NNM07AA75C, obligations in the 1-year window are concentrated in 2025, with $15.33 million obligated across 22 awards. This indicates activity is present but not broadly distributed across multiple years in the observed period. The single-year pattern limits trend analysis beyond confirming all recorded obligations fall within 2025.
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.