Award Number

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

FPDS award page for award number FA873023C0025 under agency ID 9700, showing last full year obligations and action activity.

This page summarizes award number FA873023C0025 for agency ID 9700 over the last full year. The award shows $679,391,904.80 in total obligated value across 16 actions, for an average action value of $42,461,994.05.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the provided analysis window and may not match other reporting periods or aggregation methods.

Agency ID
9700
PIID
FA873023C0025
Type
Award
Total Obligated
679.39 million
679,391,904.80
Actions
16
Average Action Value
42,461,994.05

Overview

For the last full year, award FA873023C0025 recorded total obligations of $679,391,904.80. The award includes 16 actions, indicating repeated activity over the period rather than a single obligation entry. The average action value was $42,461,994.05.

How to use this page

Use this page to review award-level obligation totals and action count for FA873023C0025. It is suited to quick FPDS reference, basic trend screening within the stated window, and comparison against other awards using the same agency and 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 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 679,391,904.80 679.39 million 16

Insight

Within the 1-year window for PIID FA873023C0025, obligations are concentrated in a single agency: the Department of the Air Force. It accounts for the full reported amount in this section, with $679.39 million across 16 awards. This indicates a highly concentrated funding distribution with no other agencies represented in the provided rows.

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 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 679,391,904.80 679.39 million 16

Insight

Obligations in the 1-year window are fully concentrated with THE BOEING COMPANY (CAGE 81205), which accounts for $679.39 million across 16 awards under PIID FA873023C0025. This indicates a highly concentrated vendor distribution with no diversification among top vendors in the provided data. The average obligation per award is approximately $42.46 million, suggesting repeated high-value activity with a single contractor.

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 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 679,391,904.80 679.39 million 16

Insight

Obligations for PIID FA873023C0025 over the past year are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $679.39 million across 16 awards, indicating a highly focused procurement profile with no diversification across other industries 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 = 'FA873023C0025'
    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
1560 AIRFRAME STRUCTURAL COMPONENTS 679,391,904.80 679.39 million 16

Insight

Obligations for PIID FA873023C0025 are fully concentrated in PSC 1560, Airframe Structural Components, with $679.39 million across 16 awards in the 1-year window. This indicates a highly focused procurement profile rather than a diversified PSC mix. The volume of awards alongside the large obligated amount suggests sustained activity within a single product 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 679,391,904.80 679.39 million 16

Insight

For award FA873023C0025, the 1-year annual trend is concentrated entirely in FY2025, with $679.39 million obligated across 16 awards. This indicates a high level of funding activity in a single fiscal year rather than a distributed multi-year pattern. The average obligation per award is substantial, suggesting the overall value is driven by a relatively small number of large obligations.

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.