This page presents the procurement profile for award number N0001918C1021 for agency ID 9700. Over the last 5 years, the award recorded 44 actions and $845,761,492.24 in total obligated amount.
Award Number
Award Number 9700 / N0001918C1021 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number N0001918C1021 under agency ID 9700, summarizing obligations and action activity over the last 5 years.
Amounts are shown for the last 5 years, with total obligated value reported at $845.76 million and average action value at $19,221,852.10.
Overview
The award record for N0001918C1021 shows 44 procurement actions in the last 5 years. Total obligated amount is $845,761,492.24, with an average action value of $19,221,852.10. These figures provide a concise view of award activity and funding level for agency ID 9700.
How to use this page
Use this page to review the award's obligation history and action count within the selected 5-year window. The totals support basic analysis of award size, action frequency, and average obligation per action without adding assumptions beyond the reported data.
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 = 'N0001918C1021'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 845,761,492.24 | 845.76 million | 41 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 3 |
Insight
Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $845.76 million across 41 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally in the record, with 3 awards and no obligated dollars. This distribution indicates that the award activity for PIID N0001918C1021 is overwhelmingly Navy-driven, with DCMA involvement limited to non-obligated actions.
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 = 'N0001918C1021'
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 | 845,761,492.24 | 845.76 million | 44 |
Insight
Over the 5-year window, obligations for award N0001918C1021 are fully concentrated with a single vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor received 44 awards totaling $845.76 million, indicating complete vendor concentration for the observed period. No additional vendor diversity is reflected in the provided rows.
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 = 'N0001918C1021'
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 | 845,761,492.24 | 845.76 million | 44 |
Insight
Over the past 5 years, obligations for PIID N0001918C1021 under Agency ID 9700 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This NAICS accounts for $845.76 million across 44 awards, indicating a narrow industrial profile rather than a diversified mix of NAICS codes. The distribution suggests the award activity is heavily focused on a single manufacturing 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 = 'N0001918C1021'
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 | 845,761,492.24 | 845.76 million | 44 |
Insight
Obligations under PIID N0001918C1021 are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components, totaling $845.76 million across 44 awards over the 5-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award count suggests repeated activity within the same product/service category rather than broad spending across multiple PSCs.
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 = 'N0001918C1021'
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 | 5,492,533.68 | 5.49 million | 21 |
| 2022 | 896,954,721.93 | 896.95 million | 11 |
| 2023 | -1,237,519.00 | -1.24 million | 6 |
| 2024 | -939,215.82 | -939.22 thousand | 4 |
| 2025 | -54,509,028.55 | -54.51 million | 2 |
Insight
Obligations for PIID N0001918C1021 are highly concentrated in 2022, which accounts for 896.95 million across 11 awards and far exceeds activity in the other years. Activity then drops sharply, with annual obligations turning negative in 2023 through 2025, including -54.51 million in 2025 across just 2 awards. The 5-year pattern indicates a one-year funding peak followed by sustained deobligation or downward adjustment, with declining award counts from 21 in 2021 to 2 in 2025.
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.