Award Number

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

Procurement summary for award number FA863422F0035 under Agency ID 9700, covering the last 5 years.

This page summarizes award number FA863422F0035 for Agency ID 9700 over the last 5 years. The award shows total obligated spending of $2,039,776,433.36 across 17 actions, with an average action value of $119,986,849.02.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are shown for the last 5 years and reflect total obligated and action count values for this award record.

Agency ID
9700
PIID
FA863422F0035
Type
Award
Total Obligated
2.04 billion
2,039,776,433.36
Actions
17
Average Action Value
119,986,849.02

Overview

Award FA863422F0035 is associated with Agency ID 9700 and records 17 actions in the last 5 years. Total obligated value is $2,039,776,433.36, which averages $119,986,849.02 per action. This page is intended to support review of the award-level spending pattern without adding information beyond the cited totals.

How to use this page

Use this page to review award-level obligation totals, action count, and average action value for FA863422F0035. It is suitable for quick comparison against other awards under the same agency ID and for checking how activity is distributed across the 5-year 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 = 'FA863422F0035'
    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 2,039,776,433.36 2.04 billion 17

Insight

Within the 5-year window, all observed obligation for PIID FA863422F0035 is concentrated in a single top agency, DEPT OF THE AIR FORCE, totaling $2.04 billion across 17 awards. This indicates a highly concentrated award distribution with no visible diversification across other agencies in the provided rows. The volume and value suggest sustained agency-specific funding activity rather than broad interagency spread.

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 = 'FA863422F0035'
        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 2,039,776,433.36 2.04 billion 17

Insight

All reported obligations for PIID FA863422F0035 in the 5-year window are concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $2.04 billion across 17 awards, indicating a highly concentrated award distribution with no other vendors represented in the provided data.

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 = 'FA863422F0035'
    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 2,039,776,433.36 2.04 billion 17

Insight

Obligations for PIID FA863422F0035 in the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award accounts for 17 actions totaling $2.04 billion, indicating a highly concentrated procurement profile with no observed diversification across other NAICS codes in the provided data. This concentration suggests the award is tied primarily to aircraft manufacturing requirements.

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 = 'FA863422F0035'
    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 2,039,776,433.36 2.04 billion 17

Insight

Obligations are entirely concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.04 billion obligated across 17 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award portfolio is therefore dominated by fixed-wing aircraft requirements.

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 = 'FA863422F0035'
    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
2022 72,451,400.00 72.45 million 1
2023 1,790,086,205.64 1.79 billion 3
2024 41,855,552.10 41.86 million 6
2025 135,383,275.62 135.38 million 7

Insight

Obligations under PIID FA863422F0035 are highly concentrated in 2023, when $1.79 billion was obligated across 3 awards, far exceeding all other years in the 5-year window. Activity then declined sharply in 2024 to $41.86 million across 6 awards, before increasing in 2025 to $135.38 million across 7 awards. The award count rose each year from 2022 through 2025, but obligated value remained uneven, indicating a spike-driven funding pattern rather than steady annual distribution.

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.