Award Number

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

FPDS award page for award number N0001917C0010 under agency ID 9700, covering the last 10 years of reported actions and obligations.

This page summarizes procurement activity for award N0001917C0010 over the last 10 years. The record shows 195 award actions and total obligated funding of 1.84 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided readable amount of 1.84 billion and the exact obligated value of 1838656695.12.

Agency ID
9700
PIID
N0001917C0010
Type
Award
Total Obligated
1.84 billion
1,838,656,695.12
Actions
195
Average Action Value
9,429,008.69

Overview

The award record for N0001917C0010 shows 195 reported actions across the last 10 years. Total obligated funding is 1.84 billion, with an average action value of 9,429,008.69. These figures provide a concise view of the award's reported procurement activity.

How to use this page

Use this page to review the award's obligation history and action volume in one place. It supports quick comparisons across years or against other FPDS award records using the same agency and award number fields.

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 = 'N0001917C0010'
    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 1,838,656,695.12 1.84 billion 184
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 11

Insight

Obligations under PIID N0001917C0010 are overwhelmingly concentrated in the DEPT OF THE NAVY, which accounts for $1.84 billion across 184 awards. By contrast, DCMA appears with 11 awards but no obligated dollars recorded, indicating administrative or oversight activity without funding obligation under this contract. Overall, the award history is highly concentrated in a single obligating agency, with limited distribution to other agencies.

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 = 'N0001917C0010'
        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 1,750,309,813.12 1.75 billion 187
UNITED TECHNOLOGIES CORPORATION 88,346,882.00 88.35 million 8

Insight

Obligations for PIID N0001917C0010 are highly concentrated with UNITED TECHNOLOGIES CORPORATION, which accounts for $1.75 billion across 187 awards under CAGE 52661. An additional $88.35 million is attributed to the same vendor name without a CAGE code across 8 awards, indicating the award activity is overwhelmingly centered on a single vendor identity. This pattern suggests limited vendor dispersion over the 10-year window.

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 = 'N0001917C0010'
    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 1,838,656,695.12 1.84 billion 195

Insight

Obligations for PIID N0001917C0010 over the 10-year window are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This single NAICS accounts for 1.84 billion across 195 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data. The award history suggests sustained activity within this industrial category rather than a broad set of procurement lines.

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 = 'N0001917C0010'
    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 1,838,656,695.12 1.84 billion 195

Insight

The award’s obligations are fully concentrated in PSC 2840, covering aircraft gas turbines and jet engines and related components, with $1.84 billion obligated across 195 awards over the 10-year window. This indicates a highly focused procurement profile centered on propulsion systems rather than a diversified PSC mix. The volume of awards suggests repeated ordering activity, while the obligation total shows this PSC is the dominant driver of contract value for this 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 = 'N0001917C0010'
    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 107,222,449.00 107.22 million 6
2017 493,581,511.66 493.58 million 30
2018 424,198,964.08 424.20 million 66
2019 127,865,891.72 127.87 million 46
2020 663,820,409.66 663.82 million 23
2021 26,309,559.00 26.31 million 14
2022 6,252,988.00 6.25 million 3
2023 2,183,354.00 2.18 million 2
2024 0.00 0.00 3
2025 -12,778,432.00 -12.78 million 2

Insight

Obligations for PIID N0001917C0010 are highly concentrated in the earlier years of the 10-year window, with the largest annual amount in 2020 at $663.82 million, followed by 2017 at $493.58 million and 2018 at $424.20 million. After 2020, obligated amounts decline sharply to $26.31 million in 2021, $6.25 million in 2022, and $2.18 million in 2023, then fall to zero in 2024 and a negative adjustment of $12.78 million in 2025. Award counts do not track obligated dollars consistently, ranging from 66 awards in 2018 to only 2 in 2023 and 2025, indicating uneven obligation value across individual awards.

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.