Award Number

Award Number 9700 / FA862516C6599 Federal Contract Action Summary (Last 5 Years)

Federal procurement analysis for award number FA862516C6599 at agency ID 9700 over the last 5 years.

This page summarizes award number FA862516C6599 for agency ID 9700 using the last 5 years of obligation and action data. The award shows 97 actions with total obligated value of 1.25 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated exact value is 1,246,716,412.74 and average action value is 12,852,746.52.

Agency ID
9700
PIID
FA862516C6599
Type
Award
Total Obligated
1.25 billion
1,246,716,412.74
Actions
97
Average Action Value
12,852,746.52

Overview

The award record for FA862516C6599 reflects 97 actions in the selected 5-year window. Total obligated funding is 1,246,716,412.74, with an average action value of 12,852,746.52.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for FA862516C6599. The figures support basic trend checks and comparative analysis within agency ID 9700 for the same 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 = 'FA862516C6599'
    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 1,246,716,412.74 1.25 billion 80
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 17

Insight

Over the 5-year window, obligations under PIID FA862516C6599 are overwhelmingly concentrated with the DEPT OF THE AIR FORCE, which accounts for $1.25 billion across 80 awards. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 17 awards but shows no obligated value, indicating administrative or oversight activity rather than funding distribution. Overall, obligated dollars are highly concentrated with a single agency.

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 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 BOEING COMPANY 81205 1,246,716,412.74 1.25 billion 97

Insight

Over the 5-year window, all reported obligations for PIID FA862516C6599 are concentrated with a single vendor, THE BOEING COMPANY (CAGE 81205). Boeing accounts for $1.25 billion across 97 awards, indicating a highly concentrated award distribution with no other vendors represented in this section. This pattern suggests sustained reliance on a sole contractor for this award record.

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 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
336411 AIRCRAFT MANUFACTURING 1,246,716,412.74 1.25 billion 97

Insight

Over the 5-year window, obligations for award FA862516C6599 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.25 billion across 97 awards. This indicates a highly focused procurement profile with no observed NAICS diversification in the provided data. The distribution suggests the award activity is dominated by a single industrial sector, which is material for assessing program concentration and supplier base exposure.

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 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
1510 AIRCRAFT, FIXED WING 1,246,716,412.74 1.25 billion 97

Insight

Obligations for PIID FA862516C6599 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.25 billion obligated across 97 awards over the 5-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award pattern suggests recurring acquisitions within the same product category rather than a broad mix of supplies 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 = 'FA862516C6599'
    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 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 under PIID FA862516C6599 were heavily concentrated in 2021 and 2022, totaling 514.78 million and 357.40 million respectively, before declining sharply in 2023 and reaching a low of 30.60 million in 2024. Award volume remained relatively active despite the lower obligated amounts, rising from 19 awards in 2021 to 21 in 2024 and 25 in 2025. In 2025, obligated dollars rebounded to 285.82 million, indicating a partial recovery after the 2023–2024 contraction.

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.