Award Number

Award Number 9700 / FA873023C0025 Federal Contract Action Summary (Last 10 Years)

Analyst summary of award number FA873023C0025 for Agency ID 9700 over the last 10 years, showing 35 actions and $1.89 billion obligated.

This page summarizes award number FA873023C0025 for Agency ID 9700 across the last 10 years. The award shows 35 actions with total obligated dollars of $1,893,176,924.88.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligated totals are shown as provided in the source data and may differ from rounded display values.

Agency ID
9700
PIID
FA873023C0025
Type
Award
Total Obligated
1.89 billion
1,893,176,924.88
Actions
35
Average Action Value
54,090,769.28

Overview

The award record for FA873023C0025 shows 35 reported actions in the analysis window. Total obligated funding is $1,893,176,924.88, with an average action value of $54,090,769.28.

How to use this page

Use this page to review the award-level obligation total and the volume of recorded actions over the last 10 years. The figures support quick comparison of this award against other FPDS records for the same agency or 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 = 'FA873023C0025'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,893,176,924.88 1.89 billion 34
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award obligations for PIID FA873023C0025 are overwhelmingly concentrated with the Department of the Air Force, which accounts for $1.89 billion across 34 awards over the 10-year window. Defense Contract Management Agency (DCMA) appears only once and carries no obligated value. This indicates that the award activity is highly concentrated within the Air Force, with DCMA playing a nominal administrative role rather than a funding role.

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 = 'FA873023C0025'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 1,893,176,924.88 1.89 billion 35

Insight

The Boeing Company accounts for the full vendor concentration in this award record, with $1.89 billion obligated across 35 awards in the 10-year window. This indicates a highly concentrated obligation pattern rather than a distributed vendor base. The award activity is entirely attributable to a single vendor, suggesting limited vendor diversity for 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 = 'FA873023C0025'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,893,176,924.88 1.89 billion 35

Insight

Obligations for this award over the 10-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.89 billion across 35 awards. This indicates a highly specialized procurement profile with no observed diversification across other NAICS codes in the provided data. The award activity is therefore concentrated in a single industrial base category, suggesting limited distribution of obligated dollars by NAICS for this PIID.

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 = 'FA873023C0025'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
1560 AIRFRAME STRUCTURAL COMPONENTS 1,893,176,924.88 1.89 billion 35

Insight

Over the 10-year window, obligations for this award are fully concentrated in PSC 1560, Airframe Structural Components, totaling $1.89 billion across 35 awards. This indicates a strong product-specific spend pattern rather than broad procurement across multiple PSCs. The distribution suggests sustained recurring activity in a single aerospace hardware 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 = 'FA873023C0025'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2023 498,415,159.12 498.42 million 10
2024 715,369,860.96 715.37 million 9
2025 679,391,904.80 679.39 million 16

Insight

Obligations on FA873023C0025 are concentrated in a three-year span, with activity rising from $498.42 million across 10 awards in 2023 to a peak of $715.37 million across 9 awards in 2024, then moderating to $679.39 million across 16 awards in 2025. The pattern indicates sustained high-value funding with year-to-year variability in award count and dollar volume, rather than a steady linear trend. 2024 and 2025 account for the largest annual obligations in the provided window.

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