This page summarizes the award number FA862511C6600 for agency ID 9700 across the last 10 years. It shows total obligated amounts, action volume, and average action value for this award record.
Award Number
Award Number 9700 / FA862511C6600 Federal Contract Action Summary (Last 10 Years)
Federal procurement profile for award number FA862511C6600 under agency ID 9700, summarizing obligation and action history over the last 10 years.
Totals reflect the provided analysis window and may include multiple contract actions recorded under the same award number.
Overview
The award number FA862511C6600 is associated with agency ID 9700 and shows 245 recorded actions in the last 10 years. Total obligated dollars are 26.97 billion, with an exact value of 26,974,634,515.64 and an average action value of 110,100,549.04.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for FA862511C6600. The figures provide a concise starting point for comparing this award against other award numbers within the same agency and time 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 = 'FA862511C6600'
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 | 26,974,634,515.64 | 26.97 billion | 243 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations are overwhelmingly concentrated with the Department of the Air Force, which accounts for $26.97 billion across 243 awards over the 10-year window. The Defense Contract Management Agency (DCMA) appears only marginally, with 2 awards and no obligated dollars reported. This pattern indicates that the award activity is almost entirely driven by the Air Force, with DCMA involvement limited to non-obligated actions.
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 = 'FA862511C6600'
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 BOEING COMPANY | 81205 | 26,822,608,754.95 | 26.82 billion | 216 |
| THE BOEING COMPANY | 152,025,760.69 | 152.03 million | 29 |
Insight
Obligations for PIID FA862511C6600 are highly concentrated in THE BOEING COMPANY, which accounts for 26.82 billion across 216 awards and dominates the vendor profile over the 10-year window. A second Boeing entry without a CAGE code reflects an additional 152.03 million across 29 awards, indicating a smaller set of awards not tied to the identified CAGE in the extract. Overall, the vendor mix is narrowly concentrated rather than broadly distributed.
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 = 'FA862511C6600'
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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 26,974,634,515.64 | 26.97 billion | 245 |
Insight
Obligations for award FA862511C6600 are fully concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for $26.97 billion across 245 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS categories in the provided data. The award count suggests repeated activity within the same industrial base, consistent with a sustained aircraft manufacturing requirement.
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 = 'FA862511C6600'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 26,974,634,515.64 | 26.97 billion | 245 |
Insight
Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, at $26.97 billion across 245 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The award activity is consistent with sustained aircraft acquisition or support requirements rather than a broad mix of products 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 = 'FA862511C6600'
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 |
|---|---|---|---|
| 2016 | 2,966,842,249.69 | 2.97 billion | 27 |
| 2017 | 2,387,920,626.64 | 2.39 billion | 28 |
| 2018 | 2,988,583,273.34 | 2.99 billion | 31 |
| 2019 | 2,741,263,818.79 | 2.74 billion | 25 |
| 2020 | 160,934,440.38 | 160.93 million | 32 |
| 2021 | 4,001,818,724.18 | 4.00 billion | 35 |
| 2022 | 2,221,924,987.50 | 2.22 billion | 25 |
| 2023 | 4,624,029,582.42 | 4.62 billion | 16 |
| 2024 | 2,398,689,604.82 | 2.40 billion | 18 |
| 2025 | 2,482,627,207.88 | 2.48 billion | 8 |
Insight
Obligations for FA862511C6600 are concentrated in the billion-dollar range across most years, with a pronounced low point in 2020 at $160.9 million before rebounding to $4.0 billion in 2021 and peaking at $4.62 billion in 2023. Award counts do not move proportionally with dollars obligated: 2023 had the highest obligations with only 16 awards, while 2021 had 35 awards on $4.0 billion and 2020 had 32 awards despite the low dollar total. The most recent years remain material at $2.40 billion in 2024 and $2.48 billion in 2025, but with fewer awards, including only 8 in 2025.
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.