Award Number

Award Number 9700 / FA862616C2139 Federal Contract Action Summary (Last 5 Years)

Procurement summary for award number FA862616C2139 under agency ID 9700, covering the last 5 years of recorded action activity.

This award record shows 42 actions over the last 5 years, with total obligations of $541.82 million. The average action value is $12.90 million, based on the provided obligation total and action count.

Generated at 03/20/2026

Analysis period: Last 5 years

All values on this page reflect the provided analysis window and may differ from other reporting views if they use different filters or rounding.

Agency ID
9700
PIID
FA862616C2139
Type
Award
Total Obligated
541.82 million
541,820,068.36
Actions
42
Average Action Value
12,900,477.82

Overview

The award number FA862616C2139 is associated with agency ID 9700 and has 42 recorded actions in the last 5 years. Total obligated amount is $541,820,068.36, or $541.82 million when rounded to two decimals. The average action value across the recorded actions is $12,900,477.82.

How to use this page

Use this page to review the scale and activity level of the award record over the stated analysis window. The combination of action count and obligated total provides a compact view of procurement activity for FA862616C2139.

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 5 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 541,820,068.36 541.82 million 31
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 11

Insight

Over the 5-year window, obligations for PIID FA862616C2139 are heavily concentrated with the Department of the Air Force, which accounts for $541.82 million across 31 awards. The Defense Contract Management Agency is also present with 11 awards, but those awards show no obligated value. This indicates that obligated activity is concentrated in a single agency, with DCMA appearing only as a non-obligated award recipient or administrative holder in the provided data.

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 5 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 541,820,068.36 541.82 million 42

Insight

Obligations for PIID FA862616C2139 over the 5-year window are concentrated with a single top vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661), which received $541.82 million across 42 awards. This indicates a highly concentrated award distribution within the identified period, with no other vendors appearing in the provided top-vendor rows. The volume of awards suggests repeated procurement activity with the same contractor rather than broad vendor dispersion.

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 5 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 541,820,068.36 541.82 million 42

Insight

Over the past 5 years, obligations under PIID FA862616C2139 are entirely concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with $541.82 million obligated across 42 awards. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The volume and dollar concentration suggest sustained reliance on this industrial base for the award.

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 5 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 541,820,068.36 541.82 million 42

Insight

Obligations are fully concentrated in PSC 2840, covering gas turbines and jet engines, aircraft, prime moving, and components, with $541.82 million obligated across 42 awards over the 5-year window. This indicates a highly focused procurement profile tied to a single product/service classification, rather than a distributed mix of PSCs. The award count suggests repeated buying activity in the same category, but no cross-PSC diversification is evident from the provided data.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 were heavily concentrated in FY 2021 and FY 2022, which together account for nearly all five-year obligated value at 270.31 million and 237.06 million, respectively. Activity fell sharply in FY 2023 to 33.23 million, turned negative in FY 2024 at -6.50 million, and remained limited in FY 2025 at 7.72 million across only two awards. Award counts were highest in FY 2022, but later years show reduced volume without a corresponding recovery in obligated dollars.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.