This page summarizes award number N0001921C0020 for agency ID 9700 across the last 10 years. The record shows 109 award actions and total obligated amount of 7.95 billion.
Award Number
Award Number 9700 / N0001921C0020 Federal Contract Action Summary (Last 10 Years)
Federal procurement profile for award number N0001921C0020 under agency ID 9700, showing obligation and action history over the last 10 years.
Totals are based on the provided analysis window and may reflect rounding between readable and exact obligation values.
Overview
Award number N0001921C0020 under agency ID 9700 shows 109 recorded actions over the last 10 years. The total obligated amount is 7.95 billion, with an exact value of 7,953,264,130.5. The average action value is 72,965,725.97.
How to use this page
Use this page to review the award-level obligation history and the volume of actions associated with N0001921C0020. The figures provide a concise basis for identifying overall spend level, action frequency, and average action size within the stated period.
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 = 'N0001921C0020'
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 | 7,953,264,130.50 | 7.95 billion | 105 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 4 |
Insight
Award activity is heavily concentrated with the DEPT OF THE NAVY, which accounts for 7.95 billion in obligated value across 105 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 4 awards and no obligated value. This distribution indicates the award is overwhelmingly associated with the Navy, with DCMA involvement limited to non-obligated or administrative activity.
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 = 'N0001921C0020'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 81755 | 7,953,264,130.50 | 7.95 billion | 109 |
Insight
LOCKHEED MARTIN CORPORATION is the only vendor listed for this award over the 10-year window, accounting for $7.95 billion in obligated value across 109 awards. This indicates complete vendor concentration for PIID N0001921C0020, with all recorded obligations attributed to a single contractor. The distribution suggests a consistently sole-sourced or otherwise fully concentrated award relationship within the observed period.
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 = 'N0001921C0020'
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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 7,953,264,130.50 | 7.95 billion | 109 |
Insight
Obligations for award N0001921C0020 are entirely concentrated in NAICS 336411, Aircraft Manufacturing, with $7.95 billion across 109 awards. This indicates a highly focused obligation profile with no evidence of diversification across additional NAICS codes in the provided data. The volume of awards suggests repeated activity within the same industry segment over the 10-year window.
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 = 'N0001921C0020'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 7,953,264,130.50 | 7.95 billion | 109 |
Insight
Obligations for award N0001921C0020 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $7.95 billion obligated across 109 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided results. The concentration suggests the award activity is dominated by fixed-wing aircraft acquisitions or related support within the 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 = 'N0001921C0020'
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 |
|---|---|---|---|
| 2020 | 311,871,119.00 | 311.87 million | 1 |
| 2021 | 2,303,745,655.00 | 2.30 billion | 29 |
| 2022 | 2,705,593,334.50 | 2.71 billion | 36 |
| 2023 | 2,019,815,529.00 | 2.02 billion | 31 |
| 2024 | 612,099,419.00 | 612.10 million | 8 |
| 2025 | 139,074.00 | 139.07 thousand | 4 |
Insight
Obligations for PIID N0001921C0020 are highly concentrated in FY 2021-FY 2023, which together account for the vast majority of the 10-year activity, with annual obligations ranging from $2.02 billion to $2.71 billion and award counts from 29 to 36. FY 2020 reflects limited activity at $311.87 million across one award, followed by a sharp expansion in FY 2021. After peaking in FY 2022, obligated amounts declined materially in FY 2023 and then fell further in FY 2024 to $612.10 million across 8 awards, with only minimal obligation in FY 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.