Geography

Vermont Federal Contract Obligations (Last Year)

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

Use this page to review federal contract obligations in Vermont 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
VT
State
Vermont
Total Obligated
874.08 million
874,078,164.32
Award Actions
6,299
Average Action Value
138,764.59

About Vermont federal contract activity

This page summarizes last full year of federal contract activity associated with Vermont. Based on the current FPDS Query dataset, this geography shows 874.08 million in visible obligations across 6,299 award actions, with an average action value of 138,764.59. 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 Vermont appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by DEFENSE LOGISTICS AGENCY, with 423.40 million in obligations, followed by DEPT OF THE NAVY. 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 Vermont over the last full year. The current ranking is led by GENERAL DYNAMICS-OTS, INC., with 396.37 million in obligations, followed by SCIENCE APPLICATIONS INTERNATIONAL 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 Vermont 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 = 'VT'
        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 423,403,330.70 423.40 million 4,225
1700 DEPT OF THE NAVY 145,784,922.89 145.78 million 319
9771 DEFENSE MICROELECTRONICS ACTIVITY (DMEA) 104,239,363.00 104.24 million 28
7003 U.S. CITIZENSHIP AND IMMIGRATION SERVICES 49,337,673.68 49.34 million 99
3600 VETERANS AFFAIRS, DEPARTMENT OF 39,068,721.46 39.07 million 319
5700 DEPT OF THE AIR FORCE 25,930,892.59 25.93 million 66
2100 DEPT OF THE ARMY 25,698,191.76 25.70 million 339
4740 PUBLIC BUILDINGS SERVICE 20,656,256.09 20.66 million 137
1605 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION AND MANAGEMENT 11,539,517.50 11.54 million 19
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 9,230,285.47 9.23 million 13

Insight

Vermont contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEFENSE LOGISTICS AGENCY, followed by DEPT OF THE NAVY, 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 = 'VT'
        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
GENERAL DYNAMICS-OTS, INC. 05606 396,365,046.12 396.37 million 179
SCIENCE APPLICATIONS INTERNATIONAL CORPORATION 6XWA8 99,412,351.89 99.41 million 103
GLOBALFOUNDRIES US 2 LLC 7D8V6 93,960,666.00 93.96 million 25
INTERNATIONAL BUSINESS MACHINES CORPORATION 3BXY7 27,605,531.80 27.61 million 3
SIMMONDS PRECISION PRODUCTS INC 89305 24,961,674.12 24.96 million 470
MIND COMPUTING, INC. 84JK0 16,649,734.20 16.65 million 6
MVP ROBOTICS, INC. 81WV2 15,927,256.00 15.93 million 2
GREENSEA SYSTEMS, INC. 4TY07 12,467,613.07 12.47 million 9
EDUCATION & TRAINING RESOURCES LLC 098E7 11,676,570.50 11.68 million 17
INTERNATIONAL BUSINESS MACHINES CORPORATION 30874 10,278,697.00 10.28 million 1

Insight

Visible obligations in Vermont over the last full year appear concentrated among a relatively small set of leading vendors. GENERAL DYNAMICS-OTS, INC. ranks first, followed by SCIENCE APPLICATIONS INTERNATIONAL 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 = 'VT'
        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
336419 OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 385,499,742.55 385.50 million 7
541330 ENGINEERING SERVICES 109,359,099.69 109.36 million 143
334413 SEMICONDUCTOR AND RELATED DEVICE MANUFACTURING 93,961,881.00 93.96 million 27
541519 OTHER COMPUTER RELATED SERVICES 30,090,954.90 30.09 million 69
611519 OTHER TECHNICAL AND TRADE SCHOOLS 27,466,773.50 27.47 million 21
541512 COMPUTER SYSTEMS DESIGN SERVICES 25,748,902.67 25.75 million 9
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 25,328,486.78 25.33 million 74
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 24,211,990.25 24.21 million 479
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 14,617,422.68 14.62 million 52
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 12,877,035.35 12.88 million 7

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Vermont 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 = 'VT'
        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
1410 GUIDED MISSILES 383,499,742.55 383.50 million 5
L059 TECHNICAL REPRESENTATIVE- ELECTRICAL AND ELECTRONIC EQUIPMENT COMPONENTS 74,475,741.78 74.48 million 12
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 56,797,065.87 56.80 million 39
5962 MICROCIRCUITS, ELECTRONIC 43,797,506.00 43.80 million 7
AC32 NATIONAL DEFENSE R&D SERVICES; DEFENSE-RELATED ACTIVITIES; APPLIED RESEARCH 33,691,440.46 33.69 million 40
DB01 IT AND TELECOM - HIGH PERFORMANCE COMPUTING (HPC) SUPPORT SERVICES (LABOR) 27,605,531.80 27.61 million 3
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 20,873,039.35 20.87 million 16
U009 EDUCATION/TRAINING- GENERAL 15,927,256.00 15.93 million 2
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 14,094,152.31 14.09 million 194
J059 MAINT/REPAIR/REBUILD OF EQUIPMENT- ELECTRICAL AND ELECTRONIC EQUIPMENT COMPONENTS 11,936,861.60 11.94 million 32

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Vermont 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 = 'VT'
        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 874,078,164.32 874.08 million 6,299

Insight

The annual trend shows how obligations in Vermont 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.