This page summarizes federal procurement activity for award number FA862616C2138 under agency ID 9700. Over the last 10 years, the award totals $2,090,921,087.07 across 153 actions, for an average action value of $13,666,150.90.
Award Number
Award Number 9700 / FA862616C2138 Federal Contract Action Summary (Last 10 Years)
Award number FA862616C2138 for agency 9700 shows 153 recorded actions over the last 10 years with $2.09 billion in total obligated funding.
All values reflect the stated 10-year analysis window and are based on the provided obligated totals and action count.
Overview
The award record for FA862616C2138 provides a compact view of procurement activity associated with agency ID 9700. In the last 10 years, the award shows 153 actions and total obligated funding of $2,090,921,087.07, with an average action value of $13,666,150.90. These figures support quick comparison of scale and action frequency within the selected window.
How to use this page
Use this page to review the award-level funding pattern, action count, and average action size for FA862616C2138. The summary is useful for identifying the overall magnitude of obligated dollars and the level of procurement activity tied to this award number. It is limited to the provided 10-year analysis window and agency ID 9700.
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 = 'FA862616C2138'
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 | 2,090,921,087.07 | 2.09 billion | 116 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 37 |
Insight
Award activity for PIID FA862616C2138 is highly concentrated within the Department of the Air Force, which accounts for $2.09 billion across 116 awards over the 10-year window. Defense Contract Management Agency appears with 37 awards but no recorded obligated amount, indicating administrative or oversight activity rather than funded obligation under this PIID. Overall, obligated value is concentrated in a single agency while award count is distributed across two agencies.
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 = 'FA862616C2138'
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 |
|---|---|---|---|---|
| GENERAL ELECTRIC COMPANY | 07482 | 1,987,250,263.07 | 1.99 billion | 148 |
| GENERAL ELECTRIC COMPANY | 103,670,824.00 | 103.67 million | 5 |
Insight
Award activity under PIID FA862616C2138 is highly concentrated in a single vendor name, GENERAL ELECTRIC COMPANY. The CAGE-coded record (07482) accounts for $1.99 billion across 148 awards, while a second record under the same vendor name but without a CAGE code accounts for an additional $103.67 million across 5 awards. This indicates that nearly all obligated value in the window is tied to one vendor identity, with a small amount split to a separate record.
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 = 'FA862616C2138'
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 |
|---|---|---|---|---|
| 336412 | AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING | 2,090,921,087.07 | 2.09 billion | 153 |
Insight
Over the 10-year window, obligations for award FA862616C2138 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for the entire reported total of $2.09 billion across 153 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 = 'FA862616C2138'
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 |
|---|---|---|---|---|
| 2840 | GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS | 2,090,921,087.07 | 2.09 billion | 153 |
Insight
For award PIID FA862616C2138 over the 10-year window, obligations are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. This PSC accounts for $2.09 billion across 153 awards, indicating a sustained and highly focused spend pattern rather than a broad distribution across multiple product service codes.
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 = 'FA862616C2138'
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 | 55,215,824.00 | 55.22 million | 5 |
| 2017 | 193,085,678.00 | 193.09 million | 19 |
| 2018 | 428,617,379.59 | 428.62 million | 32 |
| 2019 | 216,656,419.09 | 216.66 million | 15 |
| 2020 | 349,529,547.62 | 349.53 million | 21 |
| 2021 | 212,906,026.77 | 212.91 million | 24 |
| 2022 | 332,586,693.92 | 332.59 million | 22 |
| 2023 | 299,641,956.54 | 299.64 million | 11 |
| 2024 | 3,075,296.11 | 3.08 million | 2 |
| 2025 | -393,734.57 | -393.73 thousand | 2 |
Insight
Obligations under PIID FA862616C2138 were concentrated in the middle of the 10-year window, with annual activity rising from 55.22 million across 5 awards in 2016 to a peak of 428.62 million across 32 awards in 2018. Funding remained elevated but variable from 2019 through 2023, ranging from 212.91 million to 349.53 million and generally spanning 11 to 24 awards per year. Activity dropped sharply in 2024 to 3.08 million across 2 awards, and 2025 shows a small net negative obligation of 393.73 thousand across 2 awards.
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.