In the last full year, TEXTRON INC. recorded $697,755,646.03 in obligated federal awards across 46 actions, for an average action value of $15,168,601. Most of this activity came from the Department of the Navy, with a smaller share from the Department of the Army.
Federal Contractor
TEXTRON INC. Federal Contract Obligations (Last Year)
TEXTRON INC. (CAGE 50079, UEI WEE9WFHMACH9) received 46 federal award actions totaling $697.76 million in the last full year.
The award mix is concentrated in NAICS 336611 Ship Building and Repairing and NAICS 336992 Military Armored Vehicle, Tank, and Tank Component Manufacturing, with a minor amount in electronic computer manufacturing and one zero-obligation engineering services action.
About TEXTRON INC. federal contract activity
TEXTRON INC. (CAGE 50079, UEI WEE9WFHMACH9) recorded 697.76 million in obligated value across 46 awards in the last full year, for an average award size of about 15.17 million. The profile indicates a concentrated federal contracting footprint with relatively few awards carrying most of the obligated value.
Agency mix and customer concentration
Contracting activity was dominated by the Department of the Navy, which accounted for 534.38 million across 44 awards, or most of both dollars and award count. The Department of the Army represented the remaining 163.38 million across 2 awards, indicating that Textron's federal business in this period was heavily weighted toward Navy demand.
Industry profile based on NAICS activity
The award mix was overwhelmingly centered on ship building and repairing (NAICS 336611), which contributed 534.38 million across 43 awards. The next largest category was military armored vehicle, tank, and tank component manufacturing (NAICS 336992) at 163.38 million from a single award, while smaller activity in electronic computer manufacturing and engineering services was immaterial by comparison.
Annual contract trend over the analysis window
The annual view shows all recorded obligations in 2025, totaling 697.76 million across 46 awards. With no additional years in the analysis window, the data supports a single-period snapshot rather than a multi-year trend assessment.
How to interpret this page
This summary is based on FPDS award records associated with CAGE 50079 and UEI WEE9WFHMACH9 over the last full year. Obligated dollars, award counts, agency totals, NAICS totals, and annual trend figures are taken directly from the provided dataset and rounded only where shown in readable form.
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 = '50079'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 534,377,205.03 | 534.38 million | 44 |
| 2100 | DEPT OF THE ARMY | 163,378,441.00 | 163.38 million | 2 |
Insight
Over the last full year, TEXTRON INC. received 697.76 million across 46 awards, with obligations highly concentrated in the DEPT OF THE NAVY. The Navy accounted for 534.38 million and 44 awards, or the vast majority of both dollars and transactions, indicating a strong single-agency dependence. The DEPT OF THE ARMY represented the remaining 163.38 million across 2 awards, showing a much smaller secondary share of activity.
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 = '50079'
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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 534,375,528.38 | 534.38 million | 43 |
| 336992 | MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING | 163,378,441.00 | 163.38 million | 1 |
| 334111 | ELECTRONIC COMPUTER MANUFACTURING | 1,676.65 | 1.68 thousand | 1 |
| 541330 | ENGINEERING SERVICES | 0.00 | 0.00 | 1 |
Insight
TEXTRON INC. received $697.76 million across 46 awards in the last full year, with activity highly concentrated in NAICS 336611, Ship Building and Repairing, which accounted for $534.38 million across 43 awards. NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, contributed $163.38 million on a single award, indicating a second major but infrequent procurement stream. The remaining NAICS codes were immaterial by value, with only $1.68 thousand in Electronic Computer Manufacturing and one zero-obligation award in Engineering Services.
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 = '50079'
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 | 697,755,646.03 | 697.76 million | 46 |
Insight
TEXTRON INC. recorded $697.76 million in obligated awards across 46 awards in the last full year, for an average award value of about $15.17 million. The activity is concentrated in a single annual period in the provided window, so no year-over-year trend can be assessed from this dataset. The volume and average value indicate a relatively high-dollar award profile with obligations spread across a moderate number of actions.
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.