Award Number

Award Number 9700 / N0001919C0008 Federal Contract Action Summary (Last 5 Years)

Federal procurement overview for award number N0001919C0008 under agency ID 9700, covering the last 5 years of obligation and action activity.

This award record shows 69 actions over the last 5 years with total obligations of 1.51 billion dollars. The average action value is 21,820,957.06 dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and reflect an exact obligated amount of 1,505,646,037.44 dollars.

Agency ID
9700
PIID
N0001919C0008
Type
Award
Total Obligated
1.51 billion
1,505,646,037.44
Actions
69
Average Action Value
21,820,957.06

Overview

The award number N0001919C0008 is associated with agency ID 9700 and shows 69 recorded actions in the last 5 years. Total obligated value is 1,505,646,037.44 dollars, with an average action value of 21,820,957.06 dollars.

How to use this page

Use this page to review obligation volume and action activity for award N0001919C0008 within the defined analysis window. The figures support basic procurement review, trend scanning, and cross-checking against other FPDS records.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0001919C0008'
    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
1700 DEPT OF THE NAVY 1,505,646,037.44 1.51 billion 69

Insight

Obligations under PIID N0001919C0008 over the 5-year window are fully concentrated within the DEPT OF THE NAVY, which accounts for $1.51 billion across 69 awards. This indicates a single-agency obligation pattern with no other agencies represented in the provided data. The distribution suggests the award activity is entirely Navy-driven for this period.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0001919C0008'
        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
NORTHROP GRUMMAN SYSTEMS CORPORATION 78022 1,505,646,037.44 1.51 billion 69

Insight

Over the 5-year window, obligations for PIID N0001919C0008 are fully concentrated with a single vendor, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 78022). This vendor accounts for $1.51 billion across 69 awards, indicating a high degree of award and spend concentration with no other vendors represented in the provided data.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0001919C0008'
    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
336411 AIRCRAFT MANUFACTURING 1,505,646,037.44 1.51 billion 69

Insight

Over the 5-year window, obligations for award PIID N0001919C0008 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $1.51 billion across 69 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award activity is consistently aligned to aircraft manufacturing work.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0001919C0008'
    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
1550 UNMANNED AIRCRAFT 1,505,646,037.44 1.51 billion 69

Insight

Obligations under PIID N0001919C0008 are fully concentrated in PSC 1550, Unmanned Aircraft, with $1.51 billion obligated across 69 awards over the 5-year window. This indicates a highly focused procurement profile with no apparent PSC diversification in the provided data. The volume of awards suggests repeated obligations within the same product/service category rather than broad distribution across multiple 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0001919C0008'
    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 203,580,825.00 203.58 million 12
2022 332,279,590.33 332.28 million 9
2023 599,325,042.42 599.33 million 17
2024 84,954,756.22 84.95 million 13
2025 285,505,823.47 285.51 million 18

Insight

For PIID N0001919C0008, annual obligated amounts were uneven over the five-year window, rising from $203.58 million in 2021 to $332.28 million in 2022 and peaking at $599.33 million in 2023. Obligations then dropped sharply to $84.95 million in 2024 before rebounding to $285.51 million in 2025. Award counts were also variable, ranging from 9 to 18 awards per year, indicating a distributed obligation pattern rather than a steady annual concentration.

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.