Award Number

Award Number 9700 / N0001913C9999 Federal Contract Action Summary (Last 10 Years)

Award number N0001913C9999 for agency 9700 shows 124 actions over the last 10 years with $2.94 billion obligated.

This award record summarizes federal procurement activity tied to PIID N0001913C9999 for agency 9700. Over the last 10 years, it records 124 actions and $2,936,327,201.12 in total obligated amount.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are shown as provided, with a readable total of $2.94 billion and an exact total of $2,936,327,201.12.

Agency ID
9700
PIID
N0001913C9999
Type
Award
Total Obligated
2.94 billion
2,936,327,201.12
Actions
124
Average Action Value
23,680,058.07

Overview

This page presents procurement activity for award number N0001913C9999 under agency ID 9700. The record covers the last 10 years and includes 124 award actions with an average action value of $23,680,058.07. Total obligated amount is $2,936,327,201.12.

How to use this page

Use this page to review the award-level funding history, action volume, and average action value for PIID N0001913C9999. The figures support basic analysis of obligation patterns over the selected 10-year window.

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 = 'N0001913C9999'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,941,547,045.42 2.94 billion 87
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -5,219,844.30 -5.22 million 37

Insight

Obligations for PIID N0001913C9999 are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.94 billion across 87 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) is the only other listed agency and reflects a net negative obligated amount of $5.22 million across 37 awards, indicating limited offsetting activity relative to Navy obligations. Overall, the award is overwhelmingly associated with the Navy, with only a small negative balance attributed to DCMA.

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 = 'N0001913C9999'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 70974 1,932,839,870.12 1.93 billion 115
NORTHROP GRUMMAN SYSTEMS CORPORATION 1,003,487,331.00 1.00 billion 9

Insight

NORTHROP GRUMMAN SYSTEMS CORPORATION accounts for the dominant share of obligations in this award context, with one entry totaling 1.93 billion across 115 awards and a second entry totaling 1.00 billion across 9 awards. Combined, these two entries represent nearly all observed obligated value in the provided rows, indicating strong concentration with limited vendor dispersion. The award activity is split between a larger number of smaller obligations and a smaller number of high-dollar obligations, suggesting both continuity and notable variability in funding distribution.

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 = 'N0001913C9999'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,936,327,201.12 2.94 billion 124

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.94 billion obligated across 124 awards. This indicates a highly focused procurement profile with no observed distribution across other NAICS codes in the provided 10-year window. The concentration suggests the award is consistently associated with aircraft manufacturing activity rather than a diversified set of industrial categories.

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 = 'N0001913C9999'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
1510 AIRCRAFT, FIXED WING 2,936,327,201.12 2.94 billion 124

Insight

Over the 10-year window, obligations under PIID N0001913C9999 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.94 billion across 124 awards. This indicates a highly focused procurement profile with no diversification across other product service codes in the provided data. The volume of awards suggests repeated obligations within the same PSC category rather than a broad mix of purchased items.

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 = 'N0001913C9999'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 1,003,487,331.00 1.00 billion 9
2017 845,733,681.25 845.73 million 24
2018 879,355,400.75 879.36 million 23
2019 32,088,258.75 32.09 million 21
2020 59,708,166.41 59.71 million 11
2021 17,615,418.00 17.62 million 6
2022 4,616,342.18 4.62 million 3
2023 34,901,039.52 34.90 million 8
2024 23,359,434.26 23.36 million 9
2025 35,462,129.00 35.46 million 10

Insight

Obligations for PIID N0001913C9999 are heavily concentrated in the earlier years of the 10-year window, with FY2016-FY2018 accounting for the vast majority of value, including about $1.00 billion in FY2016 and roughly $845.73 million to $879.36 million in FY2017-FY2018. After FY2018, obligated amounts dropped sharply to the tens of millions annually, with a low of $4.62 million in FY2022, while award counts also fell from 21-24 awards in FY2017-FY2019 to single digits or low teens thereafter. Activity remains present through FY2025, but at materially lower value and volume than the initial years, indicating a shift from a high-obligation period to smaller, more dispersed annual obligations.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.