Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION recorded $1,494,103,757.09 in obligated federal awards across 270 actions, for an average action value of $5,533,717.61. Most activity was with the Department of the Navy and was concentrated in NAICS 334511, search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing.
Federal Contractor
NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last 5 Years)
Federal procurement profile for NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 2S209, UEI DE6HN4VGM3R1) covering obligations, award counts, agencies, NAICS mix, and annual trends over the last 5 years.
Totals reflect readable FPDS-observed obligations in the selected 5-year window; agency and NAICS subtotals may include rounding and negative adjustments.
About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity
NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 2S209, UEI DE6HN4VGM3R1) received 270 awards totaling $1.49 billion over the last 5 years, with an average award value of $5.53 million. Activity is concentrated in a high-value defense contracting profile rather than broad transaction volume.
Agency mix and customer concentration
Obligations are overwhelmingly associated with the DEPT OF THE NAVY, which accounts for $1.50 billion across 244 awards and effectively drives the vendor’s funding profile in the period. DCMA shows a net negative obligated amount of $5.49 million across 26 awards, indicating post-award adjustments or deobligations rather than new funding.
Industry profile based on NAICS activity
The vendor’s work is concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, which matches the full $1.49 billion and 268 awards. Limited activity appears in NAICS 334419 and 336414, but both are immaterial in obligated value.
Annual contract trend over the analysis window
Annual obligations were strongest in 2021 at $551.49 million, then declined in 2022 before rebounding in 2023 to $447.99 million. Funding eased in 2024 and dropped further in 2025 to $97.59 million, while award counts remained active across the period and peaked in 2021 and 2025.
How to interpret this page
This summary uses FPDS-observed obligations for the last 5 years and aggregates by vendor identifiers, agency, NAICS, and fiscal year. Totals reflect obligated dollars as reported in the analysis window and may include negative values from modifications or deobligations.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '2S209'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,499,596,406.85 | 1.50 billion | 244 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -5,492,649.76 | -5.49 million | 26 |
Insight
Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION’s obligations are highly concentrated with the DEPT OF THE NAVY, which accounts for $1.50 billion across 244 awards. This single agency relationship effectively represents the full reported funding base, while DCMA shows a net negative obligation of $5.49 million across 26 awards, indicating downward adjustment activity rather than additional funding. Overall, the vendor’s award profile is dominated by Navy obligations with limited activity elsewhere.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '2S209'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 1,494,103,757.09 | 1.49 billion | 268 |
| 334419 | OTHER ELECTRONIC COMPONENT MANUFACTURING | 0.00 | 0.00 | 1 |
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 0.00 | 0.00 | 1 |
Insight
Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 2S209) has 1.49 billion in obligations across 270 awards, with an average award value of 5.53 million. Obligations are overwhelmingly concentrated in NAICS 334511, which accounts for the full 1.49 billion and 268 of 270 awards, indicating a highly focused contract profile in aeronautical and nautical systems and instrument manufacturing. The only other NAICS codes recorded, 334419 and 336414, each show one award with no obligated dollars, suggesting incidental activity outside the core business area.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '2S209'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 97,589,717.91 | 97.59 million | 60 |
| 2024 | 279,782,843.04 | 279.78 million | 51 |
| 2023 | 447,989,915.28 | 447.99 million | 47 |
| 2022 | 117,253,410.13 | 117.25 million | 41 |
| 2021 | 551,487,870.73 | 551.49 million | 71 |
Insight
Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION received $1.49 billion across 270 awards, averaging $5.53 million per award. Obligations are unevenly distributed, with 2021 the peak year at $551.49 million and 2023 the next highest at $447.99 million, together accounting for a large share of total obligations. Activity declined in 2024 to $279.78 million and further in 2025 to $97.59 million, while award counts remained relatively stable year to year, indicating smaller average award values in the most recent period.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.