Award Number

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

Federal procurement activity for award number N0001915C0004 at agency ID 9700 over the last 10 years, including obligations and action counts.

This page summarizes award number N0001915C0004 for agency ID 9700 across the last 10 years. It shows total obligated spending of 1.84 billion across 98 award actions, with an average action value of 18,780,810.82.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided analysis window and may include multiple award actions tied to this award number.

Agency ID
9700
PIID
N0001915C0004
Type
Award
Total Obligated
1.84 billion
1,840,519,460.71
Actions
98
Average Action Value
18,780,810.82

Overview

Award number N0001915C0004 is associated with agency ID 9700 and shows 1.84051946071 billion in total obligated value over the last 10 years. The record includes 98 award actions, with an average action value of 18,780,810.82. This page is intended to support review of obligation volume and action frequency for the award.

How to use this page

Use this page to review the scale of obligations tied to award number N0001915C0004 and to compare action-level activity over time. The total obligated figure, action count, and average action value provide a compact view of award activity for procurement analysis and record lookup.

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 = 'N0001915C0004'
    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,842,683,123.70 1.84 billion 68
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -2,163,662.99 -2.16 million 30

Insight

Obligations under PIID N0001915C0004 are concentrated primarily with the DEPT OF THE NAVY, which accounts for 1.84 billion across 68 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) records a much smaller and negative net obligation of -2.16 million across 30 awards, indicating limited offsetting adjustments relative to Navy-funded activity. Overall, the award activity is heavily concentrated in one top agency, with DCMA contributing comparatively minor net movement.

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 = 'N0001915C0004'
        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 1,738,294,009.00 1.74 billion 14
UNITED TECHNOLOGIES CORPORATION 52661 102,225,451.71 102.23 million 84

Insight

Award obligations are concentrated in UNITED TECHNOLOGIES CORPORATION, which accounts for $1.74 billion across 14 awards in this 10-year window. A second entry for the same vendor, identified by CAGE 52661, reflects an additional $102.23 million across 84 awards, indicating the vendor’s obligations are split across multiple identifiers in the record. Overall, the award activity is highly concentrated in one vendor with a smaller but more frequently awarded secondary 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 = 'N0001915C0004'
    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,840,519,460.71 1.84 billion 98

Insight

Obligations for this award are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with 1.84 billion obligated across 98 awards/actions in the 10-year window. This indicates a narrowly focused procurement profile centered on aircraft engine and related parts work rather than a diversified industrial base. The volume of transactions suggests repeated activity within the same industrial classification over time.

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 = 'N0001915C0004'
    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,840,519,460.71 1.84 billion 98

Insight

Obligations for PIID N0001915C0004 are fully concentrated in PSC 2840, with $1.84 billion obligated across 98 awards. This indicates a highly focused spend profile centered on gas turbines and jet engines, aircraft prime moving, and related components. The distribution does not show any diversification across other PSCs in the provided 10-year window.

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 = 'N0001915C0004'
    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 1,738,294,009.00 1.74 billion 14
2017 80,847,132.64 80.85 million 24
2018 7,494,271.00 7.49 million 13
2019 18,448,207.32 18.45 million 20
2020 0.00 0.00 14
2021 -9,178,720.97 -9.18 million 3
2022 4,614,561.72 4.61 million 2
2023 0.00 0.00 2
2024 0.00 0.00 6

Insight

Obligations for PIID N0001915C0004 were heavily concentrated in 2016, when the award recorded $1.74 billion across 14 actions, far exceeding all other years in the 10-year window. After 2016, obligated amounts declined sharply and remained relatively low, with intermittent activity in 2017-2019, zero obligations in 2020 and 2023-2024, and a net negative obligation in 2021. Award counts continued across most years, indicating ongoing contract activity even when annual net obligations were minimal or offset by deobligations.

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.