Award Number

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

Award number FA862914C2403 under agency ID 9700 shows 29 recorded actions in the last full year with $257.17 million obligated.

This page summarizes federal procurement activity for award FA862914C2403 within agency ID 9700 over the last full year. The award shows $257,170,023.50 in total obligated dollars across 29 actions.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the stated analysis window and the provided exact obligation and action counts; average action value is $8,867,931.84.

Agency ID
9700
PIID
FA862914C2403
Type
Award
Total Obligated
257.17 million
257,170,023.50
Actions
29
Average Action Value
8,867,931.84

Overview

Award FA862914C2403 is the focal award record for agency ID 9700 in the last full year analysis window. The award accumulated $257,170,023.50 in obligated dollars across 29 actions, with an average action value of $8,867,931.84. These figures indicate a relatively high-value award history over the period reviewed.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for FA862914C2403. The data can support procurement review, award tracking, and comparison against other awards in the same agency or time window. All values on the page should be read within the last full year 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 = 'FA862914C2403'
    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 257,170,023.50 257.17 million 28
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations are highly concentrated in the Department of the Air Force, which accounts for $257.17 million across 28 awards. The only other agency activity in the 1-year window is DCMA, with one award and no obligated dollars, indicating negligible funding distribution outside the Air Force. This pattern suggests the award is primarily managed and funded within a single agency channel.

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 = 'FA862914C2403'
        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
SIKORSKY AIRCRAFT CORPORATION 78286 257,170,023.50 257.17 million 29

Insight

Over the past 1 year, obligations for award FA862914C2403 are fully concentrated with SIKORSKY AIRCRAFT CORPORATION (CAGE 78286). The vendor received 29 awards totaling $257.17 million, indicating a highly concentrated spending pattern with no other vendors represented in this window.

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 = 'FA862914C2403'
    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 257,170,023.50 257.17 million 29

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $257.17 million across 29 awards in the 1-year window. This indicates a narrow industrial focus and limited NAICS diversification for PIID FA862914C2403. The award profile is consistent with a single dominant manufacturing category driving all observed obligated activity.

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 = 'FA862914C2403'
    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
1520 AIRCRAFT, ROTARY WING 257,170,023.50 257.17 million 29

Insight

Obligations for award FA862914C2403 are entirely concentrated in PSC 1520, Aircraft, Rotary Wing, totaling $257.17 million across 29 awards in the 1-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award activity is distributed across multiple actions, but all obligations map to the same aircraft category, reinforcing the program’s concentration in rotary-wing systems.

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 = 'FA862914C2403'
    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 257,170,023.50 257.17 million 29

Insight

In the 1-year window, obligations for PIID FA862914C2403 under Agency 9700 are concentrated in a single reported year, FY 2025, with $257.17 million obligated across 29 awards. This pattern indicates all observed activity in the period is tied to one fiscal year, limiting year-over-year trend assessment within the provided data. The award volume suggests a moderate distribution of obligations across multiple actions rather than reliance on a single award.

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.