This page summarizes FPDS activity for award number FA862914C2403 within agency ID 9700 across the last 10 years. The award shows 365 actions and total obligated amounts of 5.52 billion.
Award Number
Award Number 9700 / FA862914C2403 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number FA862914C2403 under agency ID 9700 over the last 10 years.
Total obligated exact value is 5520823238.6, with an average action value of 15125543.12.
Overview
Award number FA862914C2403 is associated with agency ID 9700 and shows procurement activity over the last 10 years. The record includes 365 award actions and total obligated funding of 5.52 billion, with an average action value of 15125543.12.
How to use this page
Use this page to review the scale and cadence of activity tied to award number FA862914C2403. The action count and obligation totals provide a compact view for procurement analysis, trend review, and record lookup.
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 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 | 5,520,823,238.60 | 5.52 billion | 362 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 3 |
Insight
Obligations are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for 362 awards and $5.52 billion in obligated dollars over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only three times and shows no obligated value, indicating minimal financial distribution outside the Air Force for this PIID.
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 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 |
|---|---|---|---|---|
| SIKORSKY AIRCRAFT CORPORATION | 78286 | 5,321,900,369.96 | 5.32 billion | 339 |
| SIKORSKY AIRCRAFT CORPORATION | 198,922,868.64 | 198.92 million | 26 |
Insight
Award activity is highly concentrated with SIKORSKY AIRCRAFT CORPORATION accounting for the vast majority of obligated dollars across the 10-year window. The vendor appears in two records: one tied to CAGE 78286 with 339 awards totaling $5.32 billion, and a second record without a CAGE code with 26 awards totaling $198.92 million. Together, these entries indicate sustained spend dominance by the same vendor name, with one record capturing nearly all obligations.
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 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 | 5,520,823,238.60 | 5.52 billion | 365 |
Insight
Obligations for PIID FA862914C2403 over the 10-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single industry code accounts for $5.52 billion across 365 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes 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 = 'FA862914C2403'
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 |
|---|---|---|---|---|
| 1520 | AIRCRAFT, ROTARY WING | 5,520,823,238.60 | 5.52 billion | 365 |
Insight
For award FA862914C2403 over the 10-year window, PSC 1520 (Aircraft, Rotary Wing) accounts for all reported obligations in this section, totaling $5.52 billion across 365 awards. This indicates complete concentration in a single product service code, with no diversification across other PSCs in the provided data. The award profile is therefore heavily centered on rotary-wing aircraft procurement or support activities.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 181,116,864.64 | 181.12 million | 24 |
| 2017 | 223,354,631.32 | 223.35 million | 16 |
| 2018 | 398,005,682.83 | 398.01 million | 16 |
| 2019 | 817,070,630.78 | 817.07 million | 32 |
| 2020 | 778,104,355.61 | 778.10 million | 45 |
| 2021 | 580,263,225.97 | 580.26 million | 54 |
| 2022 | 491,156,023.08 | 491.16 million | 59 |
| 2023 | 916,755,327.24 | 916.76 million | 46 |
| 2024 | 877,826,473.63 | 877.83 million | 44 |
| 2025 | 257,170,023.50 | 257.17 million | 29 |
Insight
Obligations under PIID FA862914C2403 are concentrated in the later years of the 10-year window, with a pronounced increase beginning in 2019 and peak annual obligations in 2023 ($916.76 million) and 2024 ($877.83 million). Award counts generally rose from 16–24 in 2016–2018 to a high of 59 in 2022, indicating broader annual award activity even as obligated amounts fluctuated. The 2025 amount is lower at $257.17 million with 29 awards, but the period is likely incomplete relative to prior full-year results.
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.