This page summarizes federal procurement activity for award N0001920C0032 within agency ID 9700. The record reflects 77 award actions and $1,828,242,416.02 in total obligated value during the last 10 years.
Award Number
Award Number 9700 / N0001920C0032 Federal Contract Action Summary (Last 10 Years)
Award N0001920C0032 for agency ID 9700 shows $1.83 billion obligated across 77 actions over the last 10 years.
Dollar figures are shown as provided, with total obligated readable rounded to $1.83 billion and exact total obligated recorded as $1,828,242,416.02.
Overview
The award record for N0001920C0032 covers 77 actions in the last 10 years, with an average action value of $23,743,408. The total obligated amount is $1,828,242,416.02, which is presented on the page as $1.83 billion. This supports a quick review of overall award volume and obligated funding at the award number level.
How to use this page
Use this page to review the award-level obligation history, action count, and average action value for N0001920C0032. The figures are useful for procurement analysis, reporting, and tracing activity tied to agency ID 9700 within the selected 10-year window.
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 = 'N0001920C0032'
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,828,242,416.02 | 1.83 billion | 76 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID N0001920C0032 are highly concentrated within the Department of the Navy, which accounts for $1.83 billion across 76 awards over the 10-year window. Defense Contract Management Agency (DCMA) appears only once and reflects no obligated value. This indicates the award’s funding and activity are overwhelmingly associated with the Navy, with minimal distribution to other agencies in the provided data.
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 = 'N0001920C0032'
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 | 1,828,242,416.02 | 1.83 billion | 77 |
Insight
LOCKHEED MARTIN CORPORATION is the sole top vendor for this award over the 10-year window, accounting for $1.83 billion across 77 awards. Obligations are fully concentrated with a single vendor, indicating a high degree of vendor dependence for PIID N0001920C0032. The award activity is consistently associated with CAGE 81755 rather than being distributed across multiple vendors.
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 = 'N0001920C0032'
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 | 1,828,242,416.02 | 1.83 billion | 77 |
Insight
The award is fully concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for the entire 10-year obligation total of $1.83 billion across 77 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated contracting activity within the same industrial classification rather than a broad mix of requirements.
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 = 'N0001920C0032'
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 | 1,828,242,416.02 | 1.83 billion | 77 |
Insight
Obligations under this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.83 billion across 77 actions over the 10-year window. This indicates a narrow procurement profile centered on fixed-wing aircraft rather than a diversified PSC mix. The volume of actions suggests repeated procurement activity within the same product category.
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 = 'N0001920C0032'
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 | 711,647,651.00 | 711.65 million | 6 |
| 2021 | 180,391,988.38 | 180.39 million | 11 |
| 2022 | 275,759,853.46 | 275.76 million | 15 |
| 2023 | 298,152,161.21 | 298.15 million | 18 |
| 2024 | 270,532,503.00 | 270.53 million | 13 |
| 2025 | 91,758,258.97 | 91.76 million | 14 |
Insight
Obligations for PIID N0001920C0032 are concentrated in 2020, which accounts for 711.65 million across 6 awards and far exceeds all later years. From 2021 through 2024, annual obligations remain in a narrower band of 180.39 million to 298.15 million, while award counts generally increase from 11 to 18 before easing to 13 in 2024. In 2025, obligated dollars decline to 91.76 million despite 14 awards, indicating a lower funding level relative to the prior four years.
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.