Award Number

Award Number 9700 / FA821920C0006 Federal Contract Action Summary (Last 10 Years)

Procurement award summary for Agency ID 9700, award number FA821920C0006, covering actions recorded over the last 10 years.

This page summarizes FPDS activity for award number FA821920C0006 under Agency ID 9700. Over the last 10 years, the award shows 62 actions and total obligated value of 11.72 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Values are based on the provided analysis window and may reflect cumulative obligations across multiple actions.

Agency ID
9700
PIID
FA821920C0006
Type
Award
Total Obligated
11.72 billion
11,719,559,923.19
Actions
62
Average Action Value
189,025,160.05

Overview

The award record for FA821920C0006 shows 62 actions within the last 10 years and total obligated dollars of 11,719,559,923.19. The average action value is 189,025,160.05, indicating a high-value award with repeated recorded activity over the analysis period. This page presents the core FPDS figures tied to Agency ID 9700 for this award number.

How to use this page

Use this page to review the scale and frequency of obligated activity tied to FA821920C0006. The award action count, total obligated amount, and average action value provide a concise starting point for procurement review and comparison within the selected 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 = 'FA821920C0006'
    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
5700 DEPT OF THE AIR FORCE 11,719,559,923.19 11.72 billion 61
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award activity for PIID FA821920C0006 is overwhelmingly concentrated within the Department of the Air Force (agency 5700), which accounts for 61 awards and $11.72 billion in obligated value over the 10-year window. DCMA (agency 9763) appears only once and with no obligated value, indicating a highly centralized obligation pattern under the Air Force with limited participation by other agencies.

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 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
NORTHROP GRUMMAN SYSTEMS CORPORATION 8MQW5 11,719,559,923.19 11.72 billion 62

Insight

For this award over the 10-year window, obligations are fully concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8MQW5), which accounts for $11.72 billion across 62 awards. This indicates a highly concentrated vendor profile with no diversification among top vendors in the provided data. The volume of awards suggests a sustained contractual relationship rather than a single isolated obligation.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 11,719,559,923.19 11.72 billion 62

Insight

Over the 10-year window, award PIID FA821920C0006 is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $11.72 billion across 62 awards, indicating a highly focused obligation profile with no other NAICS categories represented 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 = 'FA821920C0006'
    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
AC24 NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; R&D ADMINISTRATIVE EXPENSES 11,549,559,923.19 11.55 billion 58
AC24 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ENGINEERING DEVELOPMENT) 170,000,000.00 170.00 million 4

Insight

Obligations under PIID FA821920C0006 are highly concentrated in one PSC, AC24, which accounts for $11.55 billion across 58 awards. A much smaller amount, $170.00 million across 4 awards, is also recorded under AC24 for R&D in missile/space systems engineering development, indicating a narrow but clearly dominant funding profile. Overall, the award appears heavily focused on AC24-related defense R&D activities, with the bulk of obligations concentrated in the first PSC 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 = 'FA821920C0006'
    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 545,000,000.00 545.00 million 6
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 PIID FA821920C0006 increased sharply from $545.0 million in 2020 to $1.36 billion in 2021, then continued rising to a peak of $2.99 billion in 2024 before declining to $2.03 billion in 2025. Award activity was comparatively steady, ranging from 6 to 13 awards annually, indicating that the obligation trend is driven more by larger annual dollar values than by major changes in award count. The period is concentrated in 2021–2025, with most obligations occurring in the 1.36 billion to 2.99 billion range.

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.