This page summarizes the award activity tied to PIID N0001921C0011 for agency ID 9700 across the last 5 years. It shows total obligated dollars, action count, and average action value for this award record.
Award Number
Award Number 9700 / N0001921C0011 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number N0001921C0011 under agency ID 9700, showing obligations and action history over the last 5 years.
Figures shown are based on the provided analysis window and may reflect rounded display values alongside exact totals.
Overview
The award record for N0001921C0011 shows 86 reported actions over the last 5 years. Total obligated value is 4,558,541,361.84, with an average action value of 53,006,294.91. The readable obligated total is 4.56 billion.
How to use this page
Use this page to review the award-level obligation trend, action frequency, and average action value for N0001921C0011. It is suitable for FPDS-style reference, procurement analysis, and quick comparison within agency ID 9700.
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 = 'N0001921C0011'
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 | 4,558,541,361.84 | 4.56 billion | 76 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 10 |
Insight
Obligations on this award are concentrated in the DEPT OF THE NAVY, which accounts for $4.56 billion across 76 actions over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears 10 times but with no obligated dollars, indicating administrative or oversight activity rather than funding distribution. Overall, the award’s obligated value is highly concentrated with the Navy as the sole funding agency reflected in the provided rows.
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 = 'N0001921C0011'
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 |
|---|---|---|---|---|
| RAYTHEON TECHNOLOGIES CORPORATION | 52661 | 4,558,541,361.84 | 4.56 billion | 86 |
Insight
Obligations for PIID N0001921C0011 over the 5-year window are fully concentrated with a single vendor, RAYTHEON TECHNOLOGIES CORPORATION (CAGE 52661). This vendor received $4.56 billion across 86 awards, indicating a highly concentrated award pattern with no observed distribution across other vendors in the provided data.
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 = 'N0001921C0011'
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 | 4,558,541,361.84 | 4.56 billion | 86 |
Insight
Over the past 5 years, obligations for this award are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, totaling $4.56 billion across 86 awards. This indicates a highly focused procurement profile with no evidence of NAICS diversification in the provided data. The volume and value concentration in a single industrial classification suggest the award is tied to a specialized aerospace engine supply base.
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 = 'N0001921C0011'
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 | 4,558,541,361.84 | 4.56 billion | 86 |
Insight
Obligations for this award are highly concentrated in PSC 2840, with $4.56 billion obligated across 86 awards in the 5-year window. This PSC accounts for the entirety of the provided top-PSC activity, indicating a strong focus on gas turbines and jet engines, aircraft prime moving, and related components. The award distribution suggests sustained procurement emphasis in this product category rather than broad diversification across 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 = 'N0001921C0011'
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 | 475,184,530.00 | 475.18 million | 12 |
| 2022 | 828,339,824.85 | 828.34 million | 16 |
| 2023 | 962,948,007.99 | 962.95 million | 23 |
| 2024 | 1,264,063,629.00 | 1.26 billion | 21 |
| 2025 | 1,028,005,370.00 | 1.03 billion | 14 |
Insight
Obligations for PIID N0001921C0011 increased steadily from 2021 through 2024, rising from $475.18 million across 12 awards to $1.26 billion across 21 awards. Award activity also expanded over this period, with the highest award count in 2023 at 23, indicating both higher funding and broader distribution of awards. In 2025, obligations declined to $1.03 billion and award count fell to 14, but activity remained above 2021–2023 levels in both dollars and volume.
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.