Award Number

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

Procurement award page for award number FA863418C2701 under agency ID 9700, summarizing five years of obligation and action activity.

This page summarizes the federal procurement record for award number FA863418C2701 over the last 5 years. The award shows 222 actions and total obligations of 1,277,883,543.09, with an average action value of 5,756,232.18.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may include all recorded award actions within that period.

Agency ID
9700
PIID
FA863418C2701
Type
Award
Total Obligated
1.28 billion
1,277,883,543.09
Actions
222
Average Action Value
5,756,232.18

Overview

Award number FA863418C2701 is associated with agency ID 9700 in the provided dataset. Over the last 5 years, the award recorded 222 actions and 1,277,883,543.09 in total obligated dollars, which indicates repeated contractual activity within the analysis window. The average action value was 5,756,232.18.

How to use this page

Use this page to review the award-level obligation total, action volume, and average action value for FA863418C2701. It is intended for procurement analysis, record review, and comparison against other award records in the same agency context.

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 = 'FA863418C2701'
    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,277,883,543.09 1.28 billion 218
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations are highly concentrated with the DEPT OF THE AIR FORCE, which accounts for $1.28 billion across 218 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 4 awards and no obligated dollars reported. This distribution indicates the award activity is overwhelmingly centered in the Air Force, with DCMA present only as a limited administrative or oversight participant.

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 = 'FA863418C2701'
        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
BOEING COMPANY, THE 76301 1,277,883,543.09 1.28 billion 222

Insight

Obligations for PIID FA863418C2701 over the 5-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor received $1.28 billion across 222 awards, indicating a highly concentrated award distribution with no evidence of diversification among top vendors in the provided data. The volume of awards relative to obligated dollars suggests frequent contracting activity under this PIID.

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 = 'FA863418C2701'
    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,277,883,543.09 1.28 billion 222

Insight

Obligations for PIID FA863418C2701 over the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $1.28 billion across 222 awards, indicating a strong concentration of activity in aircraft manufacturing with no evidence of distribution across additional NAICS codes in the provided data.

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 = 'FA863418C2701'
    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,277,883,543.09 1.28 billion 222

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.28 billion across 222 awards over the 5-year window. This indicates a highly focused award profile centered on fixed-wing aircraft procurement rather than a diversified mix of product categories. The award count suggests repeated activity within the same PSC, but no other PSCs are present in the provided rows to indicate broader distribution.

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 = 'FA863418C2701'
    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 73,996,499.00 74.00 million 34
2022 87,938,341.02 87.94 million 43
2023 401,058,037.06 401.06 million 45
2024 401,321,861.52 401.32 million 46
2025 313,568,804.49 313.57 million 54

Insight

Obligations for PIID FA863418C2701 under agency 9700 were relatively stable in 2021-2022 at $74.00 million and $87.94 million, then increased sharply in 2023 to $401.06 million and remained essentially flat in 2024 at $401.32 million. In 2025, obligations declined to $313.57 million, but the award count increased to 54, indicating a higher number of awards with lower average obligated value than in 2023-2024. Overall, the 5-year pattern is concentrated in 2023-2025, with more than four-fifths of total obligations occurring in those three years.

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.