This page summarizes award number FA862516C6599 for agency ID 9700 across the last 10 years. The record shows 187 award actions and total obligations of $3,847,538,056.32.
Award Number
Award Number 9700 / FA862516C6599 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number FA862516C6599 under agency ID 9700 over the last 10 years, showing obligation and action activity.
Totals reflect the selected 10-year analysis window and are based on readable obligated amounts.
Overview
Award number FA862516C6599 is associated with agency ID 9700 in the selected 10-year window. The record shows 187 award actions and $3,847,538,056.32 in total obligated value, averaging $20,575,069.82 per action. These figures provide a concise view of the award's activity and dollar magnitude over time.
How to use this page
Use this page to review obligation volume and action count for award FA862516C6599 within the last 10 years. The summary supports basic trend review, comparison with related procurement records, and identification of awards with high cumulative obligated value.
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 = 'FA862516C6599'
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 | 3,847,538,056.32 | 3.85 billion | 168 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 19 |
Insight
Over the 10-year window for PIID FA862516C6599, obligations are heavily concentrated with the Department of the Air Force (agency 5700), which accounts for $3.85 billion across 168 awards. Defense Contract Management Agency (agency 9763) appears only as a non-obligating agency relationship, with 19 awards recorded and $0 obligated. This distribution indicates that the award’s funded activity is centered in the Air Force, while DCMA participation is administrative or oversight-related rather than funding-bearing.
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 = 'FA862516C6599'
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 | 3,762,913,423.19 | 3.76 billion | 178 |
| THE BOEING COMPANY | 84,624,633.13 | 84.62 million | 9 |
Insight
Award obligations under PIID FA862516C6599 are heavily concentrated with THE BOEING COMPANY. The CAGE-coded entry (81205) accounts for $3.76 billion across 178 awards, while a separate Boeing entry without a CAGE code accounts for an additional $84.62 million across 9 awards. This indicates that essentially all reported vendor activity for the instrument is associated with a single contractor name, with only a small secondary record outside the coded entry.
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 = 'FA862516C6599'
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 | 3,847,538,056.32 | 3.85 billion | 187 |
Insight
Obligations for PIID FA862516C6599 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.85 billion obligated across 187 awards over the 10-year window. This indicates a highly focused procurement profile with no visible NAICS diversification in the provided data. The award count suggests repeated activity within the same industrial classification rather than a broad distribution across multiple sectors.
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 = 'FA862516C6599'
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 | 3,847,538,056.32 | 3.85 billion | 187 |
Insight
Obligations under PIID FA862516C6599 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $3.85 billion across 187 awards over the 10-year window. This indicates a highly focused procurement profile with no observed PSC diversification in the provided data. The award mix is consistent with sustained spending in a single aircraft category rather than a broad distribution across multiple product services codes.
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 = 'FA862516C6599'
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 | 84,624,633.13 | 84.62 million | 11 |
| 2017 | 484,691,456.87 | 484.69 million | 14 |
| 2018 | 687,309,391.47 | 687.31 million | 25 |
| 2019 | 615,210,563.17 | 615.21 million | 21 |
| 2020 | 728,985,598.94 | 728.99 million | 19 |
| 2021 | 514,778,422.19 | 514.78 million | 19 |
| 2022 | 357,400,417.76 | 357.40 million | 12 |
| 2023 | 58,118,570.00 | 58.12 million | 20 |
| 2024 | 30,599,169.51 | 30.60 million | 21 |
| 2025 | 285,819,833.28 | 285.82 million | 25 |
Insight
Obligations for PIID FA862516C6599 are concentrated in the middle of the 10-year window, rising from $84.62 million across 11 awards in 2016 to a peak of $728.99 million across 19 awards in 2020. Funding then declined through 2021–2024, reaching a low of $30.60 million in 2024 despite 21 awards, indicating smaller average award values in later years. Activity increased again in 2025 to $285.82 million across 25 awards, but remains below the 2017–2021 obligation levels.
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.