This page summarizes federal procurement activity for award number FA821920C0006 during the last 5 years. The award records 56 actions and total obligated amounts of 11.17 billion.
Award Number
Award Number 9700 / FA821920C0006 Federal Contract Action Summary (Last 5 Years)
FPDS query page for award number FA821920C0006 under agency ID 9700, showing obligations and action history over the last 5 years.
Totals shown here use the exact obligated amount of 11174559923.19 and an average action value of 199545712.91.
Overview
The record for award number FA821920C0006 covers 56 reported actions within the last 5 years. Total obligated amount is 11,174,559,923.19, with an average action value of 199,545,712.91.
How to use this page
Use this page to review the award's obligation level and action volume in FPDS. It can support quick comparisons across awards, trend review, and follow-up on the reported procurement history.
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 = 'FA821920C0006'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 11,174,559,923.19 | 11.17 billion | 55 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID FA821920C0006 are highly concentrated in the Department of the Air Force (agency ID 5700), which accounts for 11.17 billion across 55 awards over the 5-year window. The only other agency listed, DCMA (agency ID 9763), has 1 award with zero obligated dollars. This indicates the award activity is overwhelmingly associated with the Air Force, with no meaningful obligated-dollar distribution to other agencies in the provided results.
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 = 'FA821920C0006'
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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 8MQW5 | 11,174,559,923.19 | 11.17 billion | 56 |
Insight
Over the 5-year window, obligations for award FA821920C0006 are fully concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8MQW5), which received $11.17 billion across 56 awards. This indicates a high degree of vendor concentration for the cited award activity, with no other vendors 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 = 'FA821920C0006'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 11,174,559,923.19 | 11.17 billion | 56 |
Insight
Over the 5-year window, this award is entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $11.17 billion obligated across 56 awards. The data indicate a highly focused procurement profile with no diversification across other NAICS codes in the provided results. This concentration suggests the award activity is tied to a single specialized industrial category rather than a broad mix of goods or services.
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 = 'FA821920C0006'
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 |
|---|---|---|---|---|
| AC24 | NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D ADMINISTRATIVE EXPENSES | 11,174,559,923.19 | 11.17 billion | 56 |
Insight
Obligations under this award are fully concentrated in PSC AC24, which accounts for 11.17 billion across 56 awards in the 5-year window. This indicates a highly focused procurement profile centered on national defense R&D and related administrative expenses, with no other PSCs present in the provided data to indicate diversification.
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 = 'FA821920C0006'
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 | 1,359,299,788.83 | 1.36 billion | 12 |
| 2022 | 1,864,851,032.18 | 1.86 billion | 13 |
| 2023 | 2,926,681,444.23 | 2.93 billion | 9 |
| 2024 | 2,991,855,952.31 | 2.99 billion | 12 |
| 2025 | 2,031,871,705.64 | 2.03 billion | 10 |
Insight
Obligations for award FA821920C0006 increased from 1.36 billion in 2021 to a peak of 2.99 billion in 2024, then declined to 2.03 billion in 2025. Award counts remained relatively stable over the period, ranging from 9 to 13 per year, indicating that the funding trend is driven more by changes in average award value than by major shifts in transaction volume. The largest concentration of obligation occurred in 2023 and 2024, when annual obligations exceeded 2.9 billion.
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.