Award Number

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

Federal procurement summary for award number FA862511C6600 under agency ID 9700, covering activity in the last 5 years.

This page presents the award record for FA862511C6600 and its obligation history across the last 5 years. The award shows 102 actions with total obligated value of 15.73 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may differ from other reports depending on timing, rounding, or source updates.

Agency ID
9700
PIID
FA862511C6600
Type
Award
Total Obligated
15.73 billion
15,729,090,106.80
Actions
102
Average Action Value
154,206,765.75

Overview

The award record for FA862511C6600 shows 102 actions in the last 5 years, with total obligated value of 15,729,090,106.8. The average action value is 154,206,765.75, indicating a high-value obligation pattern across the period. This page is centered on the award number and its summarized procurement activity under agency ID 9700.

How to use this page

Use this page to review the obligation profile tied to award number FA862511C6600 and to compare its action count, total obligated amount, and average action value over the selected window. It is useful for quick reference, reporting, and identifying the scale of activity associated with this award. The figures shown are limited to the provided last-5-years analysis 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 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 15,729,090,106.80 15.73 billion 102

Insight

Within the 5-year window for award FA862511C6600, all reported obligation is concentrated in a single agency: the Department of the Air Force. It accounts for $15.73 billion across 102 awards, indicating a highly concentrated obligation pattern with no other agencies represented in the provided rows. This suggests the award activity is entirely Air Force-focused during the period reviewed.

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 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 15,729,090,106.80 15.73 billion 102

Insight

Over the 5-year window, THE BOEING COMPANY accounts for the full top-vendor concentration for PIID FA862511C6600, with $15.73 billion obligated across 102 awards. This indicates a highly concentrated vendor base, with all observed top-vendor obligations flowing to a single contractor. The distribution suggests sustained reliance on this supplier rather than a diversified award pattern.

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 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 15,729,090,106.80 15.73 billion 102

Insight

Over the 5-year window, obligations for award FA862511C6600 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $15.73 billion across 102 awards, indicating a strong and sustained concentration of activity in aircraft production. No other NAICS codes are reflected in the provided data, so the observed obligation profile is entirely focused within this industrial 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 = 'FA862511C6600'
    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 15,729,090,106.80 15.73 billion 102

Insight

Obligations under PIID FA862511C6600 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $15.73 billion obligated across 102 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 sustained acquisition activity in the fixed-wing aircraft category rather than broad distribution across multiple product service 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 = 'FA862511C6600'
    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 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 PIID FA862511C6600 were concentrated in 2021 and 2023, when annual funding reached 4.00 billion and 4.62 billion, respectively, versus a lower range of 2.22 billion to 2.48 billion in 2022, 2024, and 2025. Award volume also declined over the period, from 35 awards in 2021 to 8 awards in 2025, indicating fewer awards carrying comparable annual obligation levels in the later years. Overall, the pattern reflects intermittent peaks in obligated dollars rather than a steady year-over-year increase.

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.