This award page summarizes federal obligation and action data for award number FA862616C2139 within agency ID 9700. The analysis window covers the last 10 years and records 113 award actions.
Award Number
Award Number 9700 / FA862616C2139 Federal Contract Action Summary (Last 10 Years)
Award number FA862616C2139 for agency ID 9700 shows procurement activity over the last 10 years.
Total obligated is shown as $1.65 billion, with an exact value of 1651199673.57 and an average action value of 14612386.49.
Overview
Award number FA862616C2139 is associated with agency ID 9700 and is summarized here using a 10-year analysis window. The record shows 113 award actions and total obligations of 1651199673.57, which is readable as $1.65 billion. The average action value across the period is 14612386.49.
How to use this page
Use this page to review obligation totals and action volume tied to award number FA862616C2139. The combination of total obligated amount, action count, and average action value provides a compact view of procurement activity over time.
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 = 'FA862616C2139'
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,651,199,673.57 | 1.65 billion | 88 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 25 |
Insight
Obligations are highly concentrated with the Department of the Air Force, which accounts for $1.65 billion across 88 awards in the 10-year window. The Defense Contract Management Agency (DCMA) appears in 25 awards but with no obligated value recorded, indicating administrative activity without associated obligations in this view. Overall, the award profile is dominated by Air Force spending, with limited distribution to other agencies in the provided results.
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 = 'FA862616C2139'
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 |
|---|---|---|---|---|
| UNITED TECHNOLOGIES CORPORATION | 52661 | 1,579,799,178.57 | 1.58 billion | 107 |
| UNITED TECHNOLOGIES CORPORATION | 71,400,495.00 | 71.40 million | 6 |
Insight
Obligations for PIID FA862616C2139 are highly concentrated with UNITED TECHNOLOGIES CORPORATION, which accounts for $1.58 billion across 107 awards under CAGE 52661. A second UNITED TECHNOLOGIES CORPORATION entry with no CAGE listed adds $71.40 million across 6 awards, indicating the vendor appears in more than one record grouping. Combined, these rows show that nearly all listed obligated value is tied to this vendor, with only a small portion split into the uncoded entry.
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 = 'FA862616C2139'
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 | 1,651,199,673.57 | 1.65 billion | 113 |
Insight
Over the 10-year window, obligations for PIID FA862616C2139 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for $1.65 billion across 113 awards, indicating a highly focused procurement profile rather than a diversified NAICS distribution. The concentration suggests sustained purchasing activity tied to a single industrial base segment.
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 = 'FA862616C2139'
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 | 1,651,199,673.57 | 1.65 billion | 113 |
Insight
Obligations under award FA862616C2139 are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. Over the 10-year window, this PSC accounts for $1.65 billion across 113 awards, indicating a highly focused procurement profile with no diversification across other product service codes in the provided data. This concentration suggests the award is centered on aircraft engine-related requirements.
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 = 'FA862616C2139'
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 | 54,400,495.00 | 54.40 million | 6 |
| 2017 | 185,107,809.96 | 185.11 million | 13 |
| 2018 | 285,492,000.00 | 285.49 million | 24 |
| 2019 | 252,426,371.53 | 252.43 million | 14 |
| 2020 | 331,952,928.72 | 331.95 million | 14 |
| 2021 | 270,313,000.00 | 270.31 million | 9 |
| 2022 | 237,064,283.86 | 237.06 million | 15 |
| 2023 | 33,226,619.81 | 33.23 million | 8 |
| 2024 | -6,500,000.00 | -6.50 million | 8 |
| 2025 | 7,716,164.69 | 7.72 million | 2 |
Insight
Obligations under PIID FA862616C2139 are concentrated in the 2017–2022 period, with annual totals ranging from 185.11 million to 331.95 million and award counts generally between 9 and 24. The highest obligated amount occurred in 2020 at 331.95 million, while 2016 was the lowest positive year at 54.40 million. Activity declined sharply after 2022, falling to 33.23 million in 2023 and turning negative in 2024 at -6.50 million, before a modest rebound to 7.72 million in 2025.
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.