Award Number

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

Federal procurement summary for award N0001917C0020 under agency 9700, covering the last 10 years of action history and obligated value.

This page summarizes award N0001917C0020 for agency 9700 over the last 10 years. The award records 91 actions and 2,682,738,779.93 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the provided analysis window and may differ from other reporting periods or summaries.

Agency ID
9700
PIID
N0001917C0020
Type
Award
Total Obligated
2.68 billion
2,682,738,779.93
Actions
91
Average Action Value
29,480,645.93

Overview

Over the last 10 years, award N0001917C0020 shows 91 recorded actions and 2,682,738,779.93 in total obligated value. The average action value is 29,480,645.93, which provides a useful measure of the scale of individual award activity within the period.

How to use this page

Use this page to review the award-level obligation history tied to PIID N0001917C0020 and agency 9700. The action count, total obligated amount, and average action value can help frame basic contract analysis and support cross-checks against other federal procurement 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 = 'N0001917C0020'
    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,682,738,779.93 2.68 billion 81
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 10

Insight

Obligations for PIID N0001917C0020 are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.68 billion across 81 awards in the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 10 awards but no obligated dollars, indicating administrative or oversight activity rather than funding execution. Overall, the award history is dominated by the Navy, with minimal obligation distribution outside that agency.

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 = 'N0001917C0020'
        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 2,515,236,432.25 2.52 billion 89
UNITED TECHNOLOGIES CORPORATION 167,502,347.68 167.50 million 2

Insight

Award obligations are highly concentrated with UNITED TECHNOLOGIES CORPORATION, which accounts for the dominant share of activity under PIID N0001917C0020 over the 10-year window. The identified CAGE 52661 entity received 89 awards totaling $2.52 billion, while a separate UNITED TECHNOLOGIES CORPORATION entry without a CAGE code received 2 awards totaling $167.50 million. This pattern indicates a strong vendor concentration with limited distribution beyond the primary contractor record.

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 = 'N0001917C0020'
    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 2,682,738,779.93 2.68 billion 91

Insight

The award is fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with $2.68 billion obligated across 91 awards over the 10-year window. This indicates a highly focused procurement profile centered on aircraft engine-related work, rather than a diversified mix of industry sectors. The volume of awards alongside the obligational value suggests repeated contracting activity within the same NAICS category.

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 = 'N0001917C0020'
    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 2,682,738,779.93 2.68 billion 91

Insight

Obligations under PIID N0001917C0020 over the 10-year window are fully concentrated in PSC 2840, covering gas turbines and jet engines, aircraft prime moving components, with $2.68 billion obligated across 91 awards. This indicates a highly focused procurement profile with no observable diversification across PSCs in the provided data. The award volume suggests repeated procurement activity within a single product category rather than broad spending distribution.

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 = 'N0001917C0020'
    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 180,896,159.40 180.90 million 4
2017 328,462,430.10 328.46 million 4
2018 2,159,192,940.70 2.16 billion 15
2019 21,241,216.30 21.24 million 19
2020 13,146,118.86 13.15 million 21
2021 -193,143.00 -193.14 thousand 11
2022 -2,948,549.68 -2.95 million 6
2023 0.00 0.00 2
2024 -12,358,205.34 -12.36 million 7
2025 -4,700,187.41 -4.70 million 2

Insight

Obligations for PIID N0001917C0020 are highly concentrated in FY 2018, which accounts for the clear peak over the 10-year window at $2.16 billion across 15 awards. FYs 2016 and 2017 were materially lower at $180.90 million and $328.46 million, respectively, followed by a sharp drop in obligated amounts in FYs 2019–2020 despite a higher award count. From FY 2021 onward, obligations are negative or near zero, with modest award activity continuing through FY 2025, indicating post-peak downward adjustments rather than sustained positive funding growth.

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.