Award Number

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

Federal procurement profile for award number FA863422F0035 under agency ID 9700, covering the last full year of recorded actions and obligations.

This page summarizes award number FA863422F0035 for agency ID 9700 over the last full year. The award shows total obligations of 135,383,275.62 across 7 actions, with an average action value of 19,340,467.95.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the provided analysis window and may not capture obligations outside the last full year.

Agency ID
9700
PIID
FA863422F0035
Type
Award
Total Obligated
135.38 million
135,383,275.62
Actions
7
Average Action Value
19,340,467.95

Overview

In the last full year, award FA863422F0035 recorded 135,383,275.62 in total obligations across 7 award actions. The average action value was 19,340,467.95, indicating a small number of high-value actions within the analysis window.

How to use this page

Use this page to review obligation volume and action frequency for award FA863422F0035 under agency ID 9700. The figures support basic procurement analysis by showing total obligated amount, action count, and average action value for the selected 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 = 'FA863422F0035'
    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 135,383,275.62 135.38 million 7

Insight

Within the 1-year window for PIID FA863422F0035, obligations are fully concentrated in a single top agency: the Department of the Air Force. This agency accounts for $135.38 million across 7 awards, indicating both a sizable funding level and a limited award distribution tied to one parent organization. No other top agencies are reflected in the provided rows, so the obligation pattern appears highly concentrated.

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 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
BOEING COMPANY, THE 76301 135,383,275.62 135.38 million 7

Insight

Over the 1-year window, obligations for PIID FA863422F0035 are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $135.38 million across 7 awards, indicating a highly concentrated distribution of obligated dollars and repeated award activity within the period. No other vendors are listed in the provided rows, so no diversification of obligations is evident from this section.

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 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 135,383,275.62 135.38 million 7

Insight

Obligations for PIID FA863422F0035 over the past year are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $135.38 million across 7 awards, indicating a narrow industrial scope with no diversification across other NAICS codes in the provided data. The pattern suggests the award activity is centered entirely on aircraft manufacturing requirements during the 1-year window.

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 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 135,383,275.62 135.38 million 7

Insight

Obligations for PIID FA863422F0035 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $135.38 million obligated across 7 awards in the 1-year window. This indicates a narrow procurement mix centered on a single aircraft-related commodity, with no evidence in the provided data of diversification across other PSCs. The award pattern suggests repeated funding within the same product category rather than broad distribution of obligations.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 135,383,275.62 135.38 million 7

Insight

In FY2025, this award recorded $135.38 million in total obligated funding across 7 actions, indicating a high level of obligation concentrated within a small number of transactions. The average obligation per action is substantial, suggesting funding is not broadly distributed across many incremental modifications. With only one year provided in the 1-year window, no interannual trend can be assessed.

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.