Geography

Ohio Federal Contract Obligations (Last Year)

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

Use this page to review federal contract obligations in Ohio 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
OH
State
Ohio
Total Obligated
9.25 billion
9,245,114,372.72
Award Actions
86,231
Average Action Value
107,213.34

About Ohio federal contract activity

This page summarizes last full year of federal contract activity associated with Ohio. Based on the current FPDS Query dataset, this geography shows 9.25 billion in visible obligations across 86,231 award actions, with an average action value of 107,213.34. 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 Ohio 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 AIR FORCE, with 3.38 billion in obligations, followed by DEFENSE LOGISTICS AGENCY. 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 Ohio over the last full year. The current ranking is led by GENERAL ELECTRIC COMPANY, with 982.57 million in obligations, followed by MARATHON PETROLEUM COMPANY LP. 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 Ohio 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 = 'OH'
        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
5700 DEPT OF THE AIR FORCE 3,384,445,748.98 3.38 billion 5,261
97AS DEFENSE LOGISTICS AGENCY 1,770,081,073.57 1.77 billion 57,503
2100 DEPT OF THE ARMY 867,330,526.05 867.33 million 1,743
8900 ENERGY, DEPARTMENT OF 664,860,363.00 664.86 million 269
4732 FEDERAL ACQUISITION SERVICE 518,189,971.55 518.19 million 8,896
3600 VETERANS AFFAIRS, DEPARTMENT OF 488,079,069.29 488.08 million 3,181
1700 DEPT OF THE NAVY 350,698,923.33 350.70 million 1,681
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 195,324,514.63 195.32 million 1,239
6800 ENVIRONMENTAL PROTECTION AGENCY 166,041,451.17 166.04 million 543
12K2 AGRICULTURAL MARKETING SERVICE 103,843,418.05 103.84 million 198

Insight

Ohio 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 AIR FORCE, followed by DEFENSE LOGISTICS AGENCY, 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 = 'OH'
        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 ELECTRIC COMPANY 07482 982,568,222.84 982.57 million 358
MARATHON PETROLEUM COMPANY LP 1HGJ9 557,246,210.26 557.25 million 358
BATTELLE MEMORIAL INSTITUTE 79986 316,274,418.20 316.27 million 517
FLUOR-B&W PORTSMOUTH LLC 5SMD3 250,720,847.40 250.72 million 18
UNIVERSITY OF DAYTON 50280 219,716,077.41 219.72 million 263
CONCORDANCE HEALTHCARE SOLUTIONS LLC 7M2S6 170,648,989.27 170.65 million 18
AMERICAN CENTRIFUGE OPERATING, LLC 7F6C0 163,835,875.61 163.84 million 10
SIERRA NEVADA COMPANY, LLC 4EXW5 147,269,272.00 147.27 million 13
L3HARRIS FUZING AND ORDNANCE SYSTEMS, INC. 66126 133,674,835.13 133.67 million 11
SEVENSON ENVIRONMENTAL SERVICES, INC. 0LT07 132,162,808.00 132.16 million 2

Insight

Visible obligations in Ohio over the last full year appear concentrated among a relatively small set of leading vendors. GENERAL ELECTRIC COMPANY ranks first, followed by MARATHON PETROLEUM COMPANY LP, 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 = 'OH'
        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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,348,783,973.37 1.35 billion 2,903
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 939,109,918.79 939.11 million 458
324110 PETROLEUM REFINERIES 632,420,393.87 632.42 million 600
562910 REMEDIATION SERVICES 530,604,511.49 530.60 million 151
541519 OTHER COMPUTER RELATED SERVICES 413,701,269.08 413.70 million 1,095
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 322,590,047.33 322.59 million 826
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 300,700,308.05 300.70 million 2,731
541330 ENGINEERING SERVICES 253,751,054.53 253.75 million 669
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 235,668,120.69 235.67 million 29
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 198,464,785.93 198.46 million 293

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Ohio 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 = 'OH'
        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
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 763,985,657.54 763.99 million 286
AC12 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; APPLIED RESEARCH 458,208,668.51 458.21 million 739
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 443,435,374.72 443.44 million 520
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 357,014,358.54 357.01 million 366
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 299,723,828.78 299.72 million 540
AC32 NATIONAL DEFENSE R&D SERVICES; DEFENSE-RELATED ACTIVITIES; APPLIED RESEARCH 273,601,650.35 273.60 million 524
P500 SALVAGE- DEMOLITION OF STRUCTURES/FACILITIES (OTHER THAN BUILDINGS) 250,875,439.11 250.88 million 19
6515 MEDICAL AND SURGICAL INSTRUMENTS, EQUIPMENT, AND SUPPLIES 210,454,705.59 210.45 million 1,032
R499 SUPPORT- PROFESSIONAL: OTHER 208,707,704.46 208.71 million 1,131
AC13 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; EXPERIMENTAL DEVELOPMENT 197,785,081.52 197.79 million 417

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Ohio 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 = 'OH'
        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 9,245,114,372.72 9.25 billion 86,231

Insight

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