Federal Contractor

NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last 5 Years)

Northrop Grumman Systems Corporation (CAGE 1W025, UEI JRVLDEXMYDK8) received 1,236 federal award actions totaling $2.58 billion in the last 5 years, led by the Department of the Air Force.

Most obligations were recorded under NAICS 336411, Aircraft Manufacturing, with smaller amounts in Aircraft Engine and Engine Parts Manufacturing and Administrative Management and General Management Consulting Services. Annual obligations stayed above $438.93 million in each year shown, peaking at $545.88 million in 2021.

Generated at 03/21/2026

Analysis period: Last 5 years

This page reflects readable FPDS obligation data for the last 5 years and may differ from totals in source records due to rounding or reporting updates.

CAGE Code
1W025
UEI
JRVLDEXMYDK8
Total Obligated
2.58 billion
2,576,334,856.04
Award Actions
1,236
Average Action Value
2,084,413.31

About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity

NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 1W025, UEI JRVLDEXMYDK8) recorded 1,236 awards totaling $2.58 billion over the last 5 years, for an average award value of $2.08 million. The spending profile is highly concentrated in a small set of awards, with most obligated dollars tied to defense aviation-related procurement.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounted for essentially all obligated dollars in the period, with 1,224 awards and $2.58 billion obligated. DCMA and DLA appear in the award count but show $0 obligated, indicating administrative or pass-through activity rather than material funding concentration.

Industry profile based on NAICS activity

The portfolio is dominated by NAICS 336411, Aircraft Manufacturing, which represents $2.57 billion across 1,216 awards and drives nearly all obligated value. Secondary activity is limited to NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, and only minimal dollars appear under management consulting; other aircraft parts activity is recorded by award count but not obligated value.

Annual contract trend over the analysis window

Annual obligations remained in a relatively narrow band from 2021 through 2025, ranging from $438.93 million to $545.88 million. The highest obligated year was 2021, while 2024 shows the lowest annual total in the period; 2025 rebounds to $522.87 million across 256 awards.

How to interpret this page

This summary is based on FPDS-observed obligations for the last 5 years associated with CAGE 1W025 and UEI JRVLDEXMYDK8. Agency, NAICS, and annual views are interpreted from the provided aggregated totals and award counts; zero-obligation entries are retained as reported and should be read as award activity without recorded obligated dollars.

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 = '1W025'
        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
5700 DEPT OF THE AIR FORCE 2,576,334,856.04 2.58 billion 1,224
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 9
97AS DEFENSE LOGISTICS AGENCY 0.00 0.00 3

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION’s obligations under CAGE 1W025 are overwhelmingly concentrated in the DEPT OF THE AIR FORCE, which accounts for 2.58 billion across 1,224 awards. This indicates a highly concentrated award profile, with the Air Force representing essentially all recorded obligated dollars in the period. DCMA and DLA appear only as minor contracting activity by count, with 9 and 3 awards respectively, but no obligated dollars reported.

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 = '1W025'
        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
336411 AIRCRAFT MANUFACTURING 2,565,420,733.61 2.57 billion 1,216
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 10,112,970.00 10.11 million 12
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 801,152.43 801.15 thousand 5
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 0.00 0.00 3

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION’s obligations are highly concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for about $2.57 billion of the $2.58 billion total and 1,216 of 1,236 awards. NAICS 336412, Aircraft Engine and Aircraft Engine Parts Manufacturing, is a distant second at $10.11 million across 12 awards, while NAICS 541611 contributes less than $1 million across 5 awards. NAICS 336413 appears in award count only, with 3 awards and no obligated dollars, indicating a narrow procurement profile centered overwhelmingly on aircraft manufacturing.

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 = '1W025'
        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 522,870,767.08 522.87 million 256
2024 438,931,861.06 438.93 million 244
2023 534,576,127.30 534.58 million 236
2022 534,076,722.31 534.08 million 270
2021 545,879,378.29 545.88 million 230

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION obligated 2.58 billion across 1,236 awards, averaging 2.08 million per award. Annual obligations were relatively stable from 2021 through 2023 at roughly 534.1 million to 545.9 million, then declined in 2024 to 438.9 million before rebounding in 2025 to 522.9 million. Award volume remained consistently high, ranging from 230 to 270 awards per year, indicating broad distribution rather than reliance on a small number of awards.

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.