Award Number

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

Federal procurement summary for award number FA880219C0001 under agency ID 9700, showing obligated activity over the last 10 years.

This page summarizes award number FA880219C0001 for agency ID 9700 across the last 10 years. It shows 176 award actions with total obligated funding of 7.76 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the readable obligated amount of 7,764,448,355.12 and an average action value of 44,116,183.84.

Agency ID
9700
PIID
FA880219C0001
Type
Award
Total Obligated
7.76 billion
7,764,448,355.12
Actions
176
Average Action Value
44,116,183.84

Overview

Award number FA880219C0001 is associated with 176 actions in the last 10 years. The total obligated amount is 7,764,448,355.12, with an average action value of 44,116,183.84. This page is intended to support review of obligation volume and action-level activity for agency ID 9700.

How to use this page

Use this page to assess the scale and frequency of obligated activity tied to this award number. The figures support basic procurement analysis, including total spend, action count, and average action value over the selected 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 = 'FA880219C0001'
    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 7,764,448,355.12 7.76 billion 176

Insight

Over the 10-year window, obligations associated with PIID FA880219C0001 are fully concentrated within a single top agency: the Department of the Air Force. The Air Force accounts for $7.76 billion across 176 awards, indicating that activity is heavily centered in one agency rather than distributed across multiple agencies. This pattern suggests the award has been used consistently within a narrow agency footprint over time.

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 = 'FA880219C0001'
        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
THE AEROSPACE CORPORATION 12782 7,764,448,355.12 7.76 billion 176

Insight

THE AEROSPACE CORPORATION is the sole listed top vendor for this award and accounts for the full reported obligated amount, indicating complete concentration of obligations with one contractor. Over the 10-year window, the award reflects 176 obligations totaling $7.76 billion, suggesting sustained and recurring funding rather than a one-time action. This pattern indicates a highly concentrated vendor profile with no diversification among top recipients in the provided data.

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 = 'FA880219C0001'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 7,764,448,355.12 7.76 billion 176

Insight

Obligations for this award are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $7.76 billion obligated across 176 actions over the 10-year window. This indicates a highly concentrated procurement pattern with no visible diversification across other NAICS codes in the provided data. The volume of actions suggests sustained activity under the same technical category rather than a broad mix of acquisition types.

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 = 'FA880219C0001'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 7,764,448,355.12 7.76 billion 176

Insight

Over the 10-year window, obligations for award FA880219C0001 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical, with $7.76 billion across 176 awards. This indicates sustained use of the award for engineering and technical support services rather than a diversified mix of product or service categories. The volume of awards suggests recurring tasking under a single PSC, with spend concentrated in this labor-support classification.

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 = 'FA880219C0001'
    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
2018 389,751,146.12 389.75 million 7
2019 926,492,659.94 926.49 million 22
2020 1,029,913,151.43 1.03 billion 24
2021 1,045,184,796.68 1.05 billion 20
2022 1,041,130,444.90 1.04 billion 24
2023 1,131,980,510.71 1.13 billion 26
2024 1,255,633,603.30 1.26 billion 30
2025 944,362,042.04 944.36 million 23

Insight

Obligations for PIID FA880219C0001 increased sharply from $389.75 million in 2018 to a peak of $1.26 billion in 2024, with annual award counts generally rising from 7 to 30 over the same period. The pattern indicates a sustained concentration of funding in 2020–2024, when yearly obligations remained at or above about $1.03 billion except for 2025, which is lower at $944.36 million. Award volume also remained elevated in that period, ranging from 20 to 30 awards annually.

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.