Award Number

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

Federal procurement summary for award number N0001920C0011 under agency ID 9700, showing obligation and action history over the last 5 years.

This page summarizes the award record for PIID N0001920C0011 for agency ID 9700 across the last 5 years. The award shows total obligated dollars of 7.31 billion across 48 actions, with an average action value of 152,190,892.7.

Generated at 03/20/2026

Analysis period: Last 5 years

All dollar figures reflect the provided analysis window and are shown as both readable and exact totals where supplied.

Agency ID
9700
PIID
N0001920C0011
Type
Award
Total Obligated
7.31 billion
7,305,162,849.37
Actions
48
Average Action Value
152,190,892.70

Overview

The award record for N0001920C0011 shows 7,305,162,849.37 in total obligated funds over the last 5 years. The action count is 48, which corresponds to an average action value of 152,190,892.7.

How to use this page

Use this page to review the award-level obligation total and action count for PIID N0001920C0011 within agency ID 9700. It is useful for locating the scale of funding activity and comparing action patterns over the selected time 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 = 'N0001920C0011'
    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 7,305,162,849.37 7.31 billion 41
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 7

Insight

Obligations for PIID N0001920C0011 over the past 5 years are concentrated overwhelmingly with the Department of the Navy, which accounts for $7.31 billion across 41 awards. Defense Contract Management Agency (DCMA) appears with 7 awards but no obligated dollars, indicating administrative or oversight activity without recorded obligation value in this view. The distribution suggests funding is effectively centralized under the Navy, with DCMA present as a secondary non-obligating entity.

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 = 'N0001920C0011'
        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
UNITED TECHNOLOGIES CORPORATION 52661 7,305,162,849.37 7.31 billion 48

Insight

The top vendor profile is highly concentrated: UNITED TECHNOLOGIES CORPORATION (CAGE 52661) accounts for the full reported total in this 5-year window, with $7.31 billion obligated across 48 awards. This indicates a strong award concentration with a single vendor dominating the obligation base for PIID N0001920C0011. The award count suggests repeated procurement activity rather than a one-time obligation.

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 = 'N0001920C0011'
    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
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 7,305,162,849.37 7.31 billion 48

Insight

Over the 5-year window, obligations for award N0001920C0011 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with $7.31 billion across 48 actions. This indicates a narrow industrial focus and a high degree of funding concentration within a single NAICS category. No other NAICS codes are represented in the provided data, so the award’s obligated value is not distributed across multiple industries.

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 = 'N0001920C0011'
    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
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 7,305,162,849.37 7.31 billion 48

Insight

Award activity is fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components, with $7.31 billion obligated across 48 awards over the 5-year window. This indicates a highly focused procurement profile with spending tied to a single product/service classification rather than a diversified PSC mix. The volume and value together suggest sustained reliance on this PSC category for the award.

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 = 'N0001920C0011'
    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 218,162,158.75 218.16 million 2
2022 3,808,486,802.70 3.81 billion 12
2023 3,264,407,378.92 3.26 billion 16
2024 14,106,509.00 14.11 million 14
2025 0.00 0.00 4

Insight

Obligations under PIID N0001920C0011 were heavily concentrated in 2022 and 2023, when annual obligations reached $3.81 billion and $3.26 billion, respectively, across 12 and 16 awards. By comparison, 2021 was materially lower at $218.16 million, followed by a sharp drop in 2024 to $14.11 million despite 14 awards. In 2025, four awards were recorded with no obligated amount reported, indicating a further decline in obligation activity within the 5-year window.

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.