This page summarizes award number FA880219C0001 for agency ID 9700 over the last 5 years. The award shows 123 actions with total obligated dollars of 5.42 billion, or 5,418,291,397.63 exact.
Award Number
Award Number 9700 / FA880219C0001 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number FA880219C0001 under agency ID 9700, covering the last 5 years of obligated action activity.
Obligated totals are reported as provided for the selected analysis window and may reflect multiple action-level changes.
Overview
Award FA880219C0001 records 123 actions in the last 5 years for agency ID 9700. Total obligated amount is 5,418,291,397.63, with an average action value of 44,051,149.57.
How to use this page
Use this page to review the overall scale of activity tied to FA880219C0001 and to compare its action count, obligated dollars, and average action value with other awards. The figures are limited to the selected 5-year analysis window and are based on award-level obligation data.
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 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 | 5,418,291,397.63 | 5.42 billion | 123 |
Insight
Over the last 5 years, obligations for PIID FA880219C0001 are fully concentrated in a single top agency: the Department of the Air Force. The award reflects $5.42 billion across 123 awards, indicating a sustained and substantial funding relationship rather than a broad distribution across agencies. This concentration suggests the award activity is tightly centered within one agency portfolio.
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 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 |
|---|---|---|---|---|
| THE AEROSPACE CORPORATION | 12782 | 5,418,291,397.63 | 5.42 billion | 123 |
Insight
Obligations for PIID FA880219C0001 are fully concentrated in a single vendor over the 5-year window. THE AEROSPACE CORPORATION (CAGE 12782) accounts for $5.42 billion across 123 awards, indicating a highly concentrated award distribution with no diversification among top vendors 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 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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 5,418,291,397.63 | 5.42 billion | 123 |
Insight
Over the 5-year window, award PIID FA880219C0001 under Agency ID 9700 is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This NAICS accounts for $5.42 billion across 123 awards, indicating a highly concentrated obligation pattern with no diversification across other NAICS codes in the provided data. The distribution suggests the award portfolio is consistently aligned to R&D activities in this sector.
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 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 |
|---|---|---|---|---|
| R425 | SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL | 5,418,291,397.63 | 5.42 billion | 123 |
Insight
Obligations under PIID FA880219C0001 are entirely concentrated in PSC R425, Support- Professional: Engineering/Technical, over the 5-year window. This PSC accounts for 123 awards and $5.42 billion in total obligated value, indicating a highly focused support services profile with no distribution across other PSCs in the provided data.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 were relatively steady at roughly $1.04 billion to $1.26 billion per year from 2021 through 2024, with award counts rising from 20 to 30 over the same period. The highest annual obligation occurred in 2024 at $1.26 billion, while 2025 declined to $944.36 million across 23 awards, indicating a recent reduction from the prior four-year pattern. Overall, the award reflects a concentration of obligations in the 2021–2024 period, with volume and value moving broadly in parallel until the 2025 decrease.
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.