Geography

Connecticut Federal Contract Obligations (Last Year)

This page summarizes federal contract obligations in Connecticut for last full year, including award volume and market trend context.

Use this page to review federal contract obligations in Connecticut for last full year. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last full year

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last full year analysis window.

State Code
CT
State
Connecticut
Total Obligated
29.10 billion
29,103,468,147.77
Award Actions
45,888
Average Action Value
634,228.29

About Connecticut federal contract activity

This page summarizes last full year of federal contract activity associated with Connecticut. Based on the current FPDS Query dataset, this geography shows 29.10 billion in visible obligations across 45,888 award actions, with an average action value of 634,228.29. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

Demand in Connecticut appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by DEPT OF THE NAVY, with 24.82 billion in obligations, followed by DEPT OF THE AIR FORCE. This kind of concentration is useful context for business development, bid targeting, and understanding where the strongest federal demand appears to sit.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in Connecticut over the last full year. The current ranking is led by ELECTRIC BOAT CORPORATION, with 17.18 billion in obligations, followed by RTX CORPORATION. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved in Connecticut across the last full year, from 2025 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of geography-level obligations, top buying agencies, leading vendors, major industries, major PSC categories, and visible year-over-year movement within last full year. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'CT'
        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 24,823,613,433.55 24.82 billion 3,433
5700 DEPT OF THE AIR FORCE 2,166,921,341.76 2.17 billion 655
97AS DEFENSE LOGISTICS AGENCY 832,927,579.37 832.93 million 34,072
2100 DEPT OF THE ARMY 761,305,912.91 761.31 million 752
3600 VETERANS AFFAIRS, DEPARTMENT OF 158,905,475.39 158.91 million 956
7008 U.S. COAST GUARD 148,631,260.42 148.63 million 961
97AE DEFENSE ADVANCED RESEARCH PROJECTS AGENCY (DARPA) 26,493,326.62 26.49 million 16
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 25,112,511.82 25.11 million 194
9771 DEFENSE MICROELECTRONICS ACTIVITY (DMEA) 18,313,374.60 18.31 million 4
1605 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION AND MANAGEMENT 17,624,375.05 17.62 million 37

Insight

Connecticut contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEPT OF THE NAVY, followed by DEPT OF THE AIR FORCE, which suggests that federal demand in this geography is not evenly distributed.

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
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'CT'
        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 Award Actions
ELECTRIC BOAT CORPORATION 96169 17,175,453,847.68 17.18 billion 1,253
RTX CORPORATION 52661 3,010,684,495.33 3.01 billion 96
SIKORSKY AIRCRAFT CORPORATION 78286 2,789,558,837.20 2.79 billion 22,012
UNITED TECHNOLOGIES CORPORATION 52661 2,038,898,673.68 2.04 billion 1,547
RAYTHEON TECHNOLOGIES CORPORATION 52661 1,661,888,620.16 1.66 billion 734
SIKORSKY AIRCRAFT CORP 78286 808,288,153.45 808.29 million 185
LOCKHEED MARTIN CORPORATION 03640 198,975,638.06 198.98 million 73
HAMILTON SUNDSTRAND CORPORATION 73030 125,372,215.19 125.37 million 1,750
DANBURY MISSION TECHNOLOGIES, LLC 8LAC5 89,111,045.77 89.11 million 58
WEEKS-CASHMAN JV 9Y5H3 87,838,740.00 87.84 million 2

Insight

Visible obligations in Connecticut over the last full year appear concentrated among a relatively small set of leading vendors. ELECTRIC BOAT CORPORATION ranks first, followed by RTX CORPORATION, which helps define the current competitive landscape in this geography.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'CT'
        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 13,857,726,895.13 13.86 billion 567
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 5,043,735,305.40 5.04 billion 3,821
541330 ENGINEERING SERVICES 3,429,306,216.96 3.43 billion 489
336411 AIRCRAFT MANUFACTURING 2,922,787,942.79 2.92 billion 10,675
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 1,987,747,768.03 1.99 billion 7,962
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 491,349,752.41 491.35 million 147
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 239,596,009.17 239.60 million 454
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 124,078,749.72 124.08 million 125
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 104,107,168.64 104.11 million 27
314999 ALL OTHER MISCELLANEOUS TEXTILE PRODUCT MILLS 85,410,701.84 85.41 million 1,180

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Connecticut over the last full year. This helps show which federal market segments are most prominent in the state.

Top PSC Codes

SELECT
    psc_code,
    psc_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
        anyHeavy(content__award__productOrServiceInformation__productOrServiceCode__description) AS psc_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'CT'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Award Actions
1905 COMBAT SHIPS AND LANDING VESSELS 17,085,614,612.00 17.09 billion 558
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 4,709,231,160.09 4.71 billion 1,084
1520 AIRCRAFT, ROTARY WING 2,908,645,185.61 2.91 billion 225
J028 MAINT/REPAIR/REBUILD OF EQUIPMENT- ENGINES, TURBINES, AND COMPONENTS 1,435,261,340.27 1.44 billion 87
AC11 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; BASIC RESEARCH 450,670,880.84 450.67 million 26
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 308,109,190.96 308.11 million 1,764
1615 HELICOPTER ROTOR BLADES, DRIVE MECHANISMS AND COMPONENTS 196,308,974.46 196.31 million 2,316
AC12 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; APPLIED RESEARCH 93,007,471.00 93.01 million 80
Y1LB CONSTRUCTION OF HIGHWAYS, ROADS, STREETS, BRIDGES, AND RAILWAYS 87,976,240.00 87.98 million 4
5963 ELECTRONIC MODULES 86,229,355.25 86.23 million 8

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Connecticut over the last full year. This helps show which categories of federal demand are most prominent in the state.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'CT'
        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 29,103,468,147.77 29.10 billion 45,888

Insight

The annual trend shows how obligations in Connecticut moved across the last full year, from 2025 through 2025. This helps users judge whether visible contract activity appears stable, rising, or easing over time.

Use FPDS Query for deeper geographic analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper geographic analysis across agencies, vendors, industries, PSC categories, 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.