Award Number

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

Federal award record for award number FA862616C2139 at agency 9700, summarizing obligations and action activity for the last full year.

This page presents the award-level procurement profile for PIID FA862616C2139 under agency ID 9700. In the last full year, the award recorded 2 actions and $7.72 million in total obligated funding.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and use the exact obligated amount of $7,716,164.69.

Agency ID
9700
PIID
FA862616C2139
Type
Award
Total Obligated
7.72 million
7,716,164.69
Actions
2
Average Action Value
3,858,082.35

Overview

The award record for FA862616C2139 shows a total obligation of $7,716,164.69 across 2 actions in the last full year. The average action value was $3,858,082.35, indicating a small action count with relatively concentrated obligated value.

How to use this page

Use this page to review award-level activity for FA862616C2139 within agency ID 9700 over the last full year. The summary supports quick checks of total obligation, action count, and average action value without inferring details not present in the source data.

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 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 7,716,164.69 7.72 million 2

Insight

Within the 1-year window for PIID FA862616C2139, obligations are fully concentrated in a single top agency: the Department of the Air Force. It accounts for $7.72 million across 2 awards, indicating all reported activity in this view is tied to one agency rather than distributed across multiple agencies. This pattern suggests a narrowly focused award relationship within the reported period.

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 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
UNITED TECHNOLOGIES CORPORATION 52661 7,716,164.69 7.72 million 2

Insight

Over the 1-year window, obligations under PIID FA862616C2139 were concentrated entirely with a single vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor received 2 awards totaling $7.72 million, indicating a fully concentrated vendor distribution for the period. With no additional vendors listed, the award activity in this window shows no observable diversification among recipients.

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 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
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 7,716,164.69 7.72 million 2

Insight

Obligations for PIID FA862616C2139 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with $7.72 million obligated across 2 awards in the 1-year window. This indicates a narrow industry footprint and no observed diversification across additional NAICS codes in the provided data. The funding profile suggests the award activity is focused on a single manufacturing sector.

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 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
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 7,716,164.69 7.72 million 2

Insight

Obligations for this award are fully concentrated in PSC 2840, covering gas turbines and jet engines, aircraft prime moving, and components. Over the 1-year window, the award recorded 2 actions totaling $7.72 million, indicating a narrow PSC distribution with no other PSCs represented in the provided data. This concentration suggests the award’s funded activity is focused entirely on this aircraft propulsion-related category.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 7,716,164.69 7.72 million 2

Insight

In the 1-year window, obligations for PIID FA862616C2139 are concentrated entirely in FY2025, with $7.72 million obligated across 2 awards. The small award count indicates a limited distribution of activity rather than a broad multi-year funding pattern. No other annual obligation activity is present in the provided rows, so this period reflects a single-year concentration.

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.