Award Number

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

Award number N0001917C0020 for agency 9700 shows 28 recorded actions over the last 5 years, with total obligations of -$20.20 million.

This page summarizes procurement activity for award N0001917C0020 under agency ID 9700 across the last 5 years. The award shows 28 actions and total obligated amount of -$20,200,085.43.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures reflect the provided analysis window and may include negative obligations.

Agency ID
9700
PIID
N0001917C0020
Type
Award
Total Obligated
-20.20 million
-20,200,085.43
Actions
28
Average Action Value
-721,431.62

Overview

The award number N0001917C0020 is associated with agency ID 9700 and, in the last 5 years, shows total obligations of -$20,200,085.43. Across 28 actions, the average action value is -$721,431.62. This page is intended to summarize the award-level activity recorded for that period.

How to use this page

Use this page to review the award's action count, total obligated amount, and average action value within the selected 5-year window. It is useful for quick award-level analysis and for comparing this award's recorded obligations against other FPDS results.

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 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
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2
1700 DEPT OF THE NAVY -20,200,085.43 -20.20 million 26

Insight

Obligations for PIID N0001917C0020 over the 5-year window are concentrated in the DEPT OF THE NAVY, which accounts for -$20.20 million across 26 awards. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only as a minor counterpart with 2 awards and no obligated dollars. This distribution indicates the award activity is dominated by Navy funding, with DCMA involvement limited to non-obligated transactions.

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 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 -20,200,085.43 -20.20 million 28

Insight

Over the 5-year window for award N0001917C0020, obligations are fully concentrated with a single vendor: UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor accounts for 28 awards and a net total obligated amount of -$20.20 million, indicating a substantial negative obligation balance over the period. Because only one vendor appears in this section, there is no observable distribution across additional suppliers for this award.

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 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 -20,200,085.43 -20.20 million 28

Insight

For award N0001917C0020 over the 5-year window, obligations are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for 28 award actions and a net obligated amount of -$20.20 million, indicating all observed activity in this section is tied to a single industrial classification. The negative total suggests net deobligation or downward adjustment over the period rather than net new funding.

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 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 -20,200,085.43 -20.20 million 28

Insight

Obligations for this award are concentrated entirely in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components, with 28 actions totaling -$20.20 million over the 5-year window. The negative obligated amount indicates net deobligations or downward adjustments in this PSC category rather than net funding growth. This pattern suggests the award’s financial activity has been narrowly focused within a single aircraft propulsion-related supply area.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 under PIID N0001917C0020 were concentrated in 2024, which accounted for the largest annual outflow at -12.36 million across 7 awards. Prior years show smaller and uneven activity: -193.14 thousand in 2021, -2.95 million in 2022, and no obligation activity in 2023 despite 2 awards. Activity resumed in 2025 at -4.70 million across 2 awards, indicating a decline from the 2024 peak but still materially above 2021–2023 levels.

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.