Federal Contractor

CFM INTERNATIONAL, INC. Federal Contract Obligations (Last Year)

CFM INTERNATIONAL, INC. (CAGE 58828, UEI Q6HPK83NVT26) received 289 award actions totaling $225.04 million in the last full year, with most obligations from the Defense Logistics Agency.

CFM INTERNATIONAL, INC. recorded $225,036,468.56 in federal obligations across 289 award actions in the last full year. The Defense Logistics Agency accounted for $218.65 million of that total, while the Department of the Navy obligated $6.39 million.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the selected analysis window and may include obligations across multiple actions and agencies.

CAGE Code
58828
UEI
Q6HPK83NVT26
Total Obligated
225.04 million
225,036,468.56
Award Actions
289
Average Action Value
778,672.90

About CFM INTERNATIONAL, INC. federal contract activity

CFM INTERNATIONAL, INC. recorded 289 FPDS-observed awards totaling $225.04 million in the last full year, with an average award value of $778,672.90. The vendor’s procurement activity is concentrated in a relatively small number of awards with substantial dollar volume, indicating recurring federal demand rather than broad transactional dispersion.

Agency mix and customer concentration

The award profile is heavily concentrated in the Defense Logistics Agency, which accounted for 283 awards and $218.65 million, or about 97% of total obligated value. The Department of the Navy contributed the remaining $6.39 million across 6 awards, showing a narrow agency footprint anchored in defense procurement.

Industry profile based on NAICS activity

Federal spending is overwhelmingly associated with NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, which represented $224.92 million across 283 awards and nearly all obligated value. The remaining NAICS codes account for only marginal activity, with isolated obligations in transformer manufacturing and small arms/ordnance categories, and two additional codes showing award counts but no obligated dollars in the period.

Annual contract trend over the analysis window

The annual trend for 2025 matches the full-year totals, at $225.04 million across 289 awards, indicating that the analysis window is effectively a single-year snapshot. Within that year, the vendor’s volume appears steady enough to produce a high award count tied to a dominant defense-related product set, rather than a diversified multi-year pattern.

How to interpret this page

This summary is based on FPDS award records for the vendor matched to CAGE code 58828 and UEI Q6HPK83NVT26 over the last full year. Totals reflect obligated dollars and award counts aggregated across reported contracts; NAICS and agency shares are derived from the provided FPDS distributions and rounded for readability.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '58828'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
97AS DEFENSE LOGISTICS AGENCY 218,645,358.56 218.65 million 283
1700 DEPT OF THE NAVY 6,391,110.00 6.39 million 6

Insight

During the last full year, CFM INTERNATIONAL, INC. received $225.04 million across 289 awards, with an average award value of $778,672.90. Obligations were highly concentrated in the Defense Logistics Agency, which accounted for $218.65 million and 283 awards, or about 97% of total obligated value. The Department of the Navy represented the remaining $6.39 million across 6 awards, indicating a very limited secondary agency relationship.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '58828'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 224,921,175.06 224.92 million 283
335311 POWER, DISTRIBUTION, AND SPECIALTY TRANSFORMER MANUFACTURING 101,400.00 101.40 thousand 1
332994 SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING 13,893.50 13.89 thousand 1
333613 MECHANICAL POWER TRANSMISSION EQUIPMENT MANUFACTURING 0.00 0.00 2
332991 BALL AND ROLLER BEARING MANUFACTURING 0.00 0.00 2

Insight

CFM INTERNATIONAL, INC. shows a highly concentrated top-NAICS profile for the last full year, with NAICS 336412 (Aircraft Engine and Engine Parts Manufacturing) accounting for $224.92 million of $225.04 million total obligated, or essentially all obligations across 283 of 289 awards. The remaining obligated value is limited to two minor NAICS codes, 335311 and 332994, totaling about $115.3 thousand combined. Two additional NAICS codes, 333613 and 332991, have awards but no obligated value, indicating activity without associated obligations in this window.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '58828'
        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 DESC
Year Total Obligated Readable Award Actions
2025 225,036,468.56 225.04 million 289

Insight

Over the last full year, CFM INTERNATIONAL, INC. (CAGE 58828) recorded $225.04 million in obligated awards across 289 awards, for an average award value of approximately $778.7 thousand. The activity is concentrated in a single annual period, so the available data supports a snapshot of current-year procurement volume rather than a multi-year trend. The award count indicates a relatively broad distribution of obligations across many actions, although the data provided do not show contract type or end-use concentration.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.