Award Number

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

Award number N0001920C0011 for agency ID 9700 shows procurement activity over the last 10 years, with 53 actions and $7.50 billion obligated.

This page summarizes the federal award identified by PIID N0001920C0011 for agency ID 9700 across the last 10 years. The record shows 53 award actions and $7,498,943,172.37 in total obligated value, with an average action value of $141,489,493.82.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the analysis window provided and may differ from other reporting periods or later updates.

Agency ID
9700
PIID
N0001920C0011
Type
Award
Total Obligated
7.50 billion
7,498,943,172.37
Actions
53
Average Action Value
141,489,493.82

Overview

The award record for PIID N0001920C0011 within agency ID 9700 covers 53 actions in the last 10 years. Total obligated value is $7,498,943,172.37, which is about $7.50 billion, and the average action value is $141,489,493.82.

How to use this page

Use this page to review the award-level obligation history for PIID N0001920C0011 and compare activity across the selected 10-year window. The summary is based only on the fields provided here and does not add contract scope, vendor, or action-detail information.

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 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 7,498,943,172.37 7.50 billion 45
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 8

Insight

Obligations for PIID N0001920C0011 are highly concentrated in the Department of the Navy, which accounts for $7.50 billion across 45 awards over the 10-year window. Defense Contract Management Agency (DCMA) appears with 8 awards but no obligated dollars, indicating administrative or oversight activity rather than funded obligation. Overall, the award history is dominated by a single funding agency, with limited distribution to another agency and no material obligated value outside the Navy.

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 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
UNITED TECHNOLOGIES CORPORATION 52661 7,498,943,172.37 7.50 billion 53

Insight

Over the 10-year window, obligated funding for PIID N0001920C0011 is fully concentrated with a single vendor: UNITED TECHNOLOGIES CORPORATION (CAGE 52661). That vendor accounts for $7.50 billion across 53 awards, indicating a highly concentrated award profile with no evidence of vendor diversification 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 = 'N0001920C0011'
    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
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 7,498,943,172.37 7.50 billion 53

Insight

Over the 10-year period, obligations are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This single NAICS accounts for $7.50 billion across 53 awards, indicating a highly concentrated acquisition pattern for this award. The distribution suggests the requirement is consistently tied to aircraft engine-related manufacturing rather than spread across multiple industry 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 = 'N0001920C0011'
    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
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 7,498,943,172.37 7.50 billion 53

Insight

Obligations under PIID N0001920C0011 are fully concentrated in PSC 2840, Aircraft gas turbines and jet engines and related components, with $7.50 billion obligated across 53 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within a single product category rather than broad contract dispersion.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 193,780,323.00 193.78 million 5
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 for PIID N0001920C0011 are highly concentrated in FY 2022 and FY 2023, which together account for the vast majority of the reported 10-year obligations. Activity was much lower in FY 2020 and FY 2021, surged to $3.81 billion across 12 awards in FY 2022 and $3.26 billion across 16 awards in FY 2023, then dropped sharply to $14.11 million in FY 2024. FY 2025 reflects four awards with no obligations recorded in the provided data.

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.