This page summarizes procurement activity for award N0001920C0009 under agency 9700 across the last 5 years. The record includes 74 award actions with total obligated amounts of 27.41 billion and an average action value of 370,422,145.95.
Award Number
Award Number 9700 / N0001920C0009 Federal Contract Action Summary (Last 5 Years)
Award number N0001920C0009 for agency 9700 shows obligated activity over the last 5 years.
Dollar totals are shown as reported for the analysis window and may differ from rounded display values.
Overview
Award number N0001920C0009 is associated with agency 9700 and reflects 74 recorded actions in the last 5 years. Total obligated amount for the period is 27.41 billion, with an exact total of 27,411,238,799.93 and an average action value of 370,422,145.95. The page is limited to the provided award-level summary and does not infer contract scope or performance details.
How to use this page
Use this page to review the scale and frequency of obligated activity tied to award N0001920C0009 within the selected 5-year window. The totals and action count can support basic procurement analysis, comparison against other awards, and identification of high-dollar action patterns.
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 = 'N0001920C0009'
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 | 27,411,238,799.93 | 27.41 billion | 48 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 26 |
Insight
Award activity is highly concentrated with the DEPT OF THE NAVY, which accounts for $27.41 billion across 48 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 26 awards but no obligated dollars recorded, indicating administrative or oversight activity rather than funding concentration. Overall, obligation volume is dominated by the Navy, with all recorded dollars attributable to a single agency in these 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 = 'N0001920C0009'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 81755 | 27,411,238,799.93 | 27.41 billion | 74 |
Insight
Over the 5-year window for award N0001920C0009, obligations are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for $27.41 billion across 74 awards, indicating sustained and highly concentrated spend rather than a distributed vendor base. This pattern suggests the award is a major recurring obligation vehicle for the same contractor.
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 = 'N0001920C0009'
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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 27,411,238,799.93 | 27.41 billion | 74 |
Insight
Over the 5-year window for award PIID N0001920C0009 under agency 9700, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $27.41 billion across 74 awards, indicating a highly focused contracting profile with no diversification evident in the provided data.
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 = 'N0001920C0009'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 27,411,238,799.93 | 27.41 billion | 74 |
Insight
Obligations for this award are fully concentrated in PSC 1510 (Aircraft, Fixed Wing), totaling $27.41 billion across 74 awards/actions in the 5-year window. This indicates a highly specialized procurement profile with no visible PSC diversification in the provided data. The concentration suggests the award is primarily associated with fixed-wing aircraft requirements rather than a broader mix of supplies or services.
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 = 'N0001920C0009'
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 | 2,570,244,564.00 | 2.57 billion | 2 |
| 2022 | 16,911,322,704.97 | 16.91 billion | 10 |
| 2023 | 7,884,389,319.94 | 7.88 billion | 21 |
| 2024 | 15,893,183.02 | 15.89 million | 25 |
| 2025 | 29,389,028.00 | 29.39 million | 16 |
Insight
Obligations under PIID N0001920C0009 are heavily concentrated in 2022 and 2023, which together account for nearly all activity in the 5-year window, with 16.91 billion and 7.88 billion obligated, respectively. Award volume peaks later, rising from 2 awards in 2021 to 25 in 2024 and remaining elevated at 16 in 2025, but those later years carry only 15.89 million and 29.39 million in obligations. This indicates a shift from a few very large obligation events to a higher number of smaller-dollar awards in the most recent 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.