Award Number

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

FPDS award record for PIID FA862511C6600 under agency 9700, showing obligations and action activity for the last full year.

This award page summarizes procurement activity for award number FA862511C6600 during the last full year. The record shows 8 award actions with total obligated funding of $2,482,627,207.88.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are based on the provided analysis window and are shown as total obligated and average action value for the award.

Agency ID
9700
PIID
FA862511C6600
Type
Award
Total Obligated
2.48 billion
2,482,627,207.88
Actions
8
Average Action Value
310,328,400.99

Overview

For the last full year, award number FA862511C6600 records 8 actions and $2,482,627,207.88 in total obligated value. The average action value is $310,328,400.99, indicating a high-value award with limited action count.

How to use this page

Use this page to review the award-level obligation pattern for PIID FA862511C6600 and to compare action volume against total funding. The summary is limited to the supplied analysis window and does not add contract terms, vendor details, or other fields not provided.

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 1 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 2,482,627,207.88 2.48 billion 8

Insight

All recorded obligations in the 1-year window are concentrated in DEPT OF THE AIR FORCE, which accounts for $2.48 billion across 8 awards. This indicates a highly concentrated award profile with no visible distribution across other agencies in the provided data. The pattern suggests the procurement activity is fully dominated by a single agency relationship for this PIID.

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 1 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 2,482,627,207.88 2.48 billion 8

Insight

THE BOEING COMPANY accounts for all reported obligation in this 1-year window for PIID FA862511C6600, with $2.48 billion across 8 awards. This indicates complete vendor concentration, with no diversification among top vendors in the reported data. The distribution suggests the contract activity is fully reliant on a single supplier during the period reviewed.

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 1 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 2,482,627,207.88 2.48 billion 8

Insight

Over the past 1 year, obligations for PIID FA862511C6600 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with 8 awards totaling $2.48 billion. This indicates a highly concentrated industrial base and no observable NAICS diversification within the provided award set. The distribution suggests procurement activity is entirely focused on aircraft manufacturing for this period.

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 1 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 2,482,627,207.88 2.48 billion 8

Insight

Obligations for this award over the past year are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.48 billion obligated across 8 awards. This indicates a narrow procurement profile and limited PSC diversification within the observed window. The concentration suggests the award activity is dominated by a single aircraft-related commodity category.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,482,627,207.88 2.48 billion 8

Insight

Over the 1-year window, this award account obligated $2.48 billion in FY 2025 across 8 awards, indicating a highly concentrated obligation profile. The average obligation per award is substantial, suggesting funding was distributed across a small number of actions rather than a broad award base. With only one year of data provided, no year-over-year trend can be assessed from this section.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.