Geography

Nebraska Federal Contract Obligations (Last 5 Years)

This page summarizes federal contract obligations in Nebraska for last 5 years, including award volume and market trend context.

Use this page to review federal contract obligations in Nebraska for last 5 years. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last 5 years

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

State Code
NE
State
Nebraska
Total Obligated
7.19 billion
7,187,583,178.20
Award Actions
93,341
Average Action Value
77,003.49

About Nebraska federal contract activity

This page summarizes last 5 years of federal contract activity associated with Nebraska. Based on the current FPDS Query dataset, this geography shows 7.19 billion in visible obligations across 93,341 award actions, with an average action value of 77,003.49. 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 Nebraska appears concentrated among a relatively small group of federal buyers over the last 5 years. The visible agency ranking is led by DEPT OF THE AIR FORCE, with 2.16 billion in obligations, followed by DEPT OF THE ARMY. 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 Nebraska over the last 5 years. The current ranking is led by NELNET SERVICING, LLC, with 901.21 million in obligations, followed by METGREEN SOLUTIONS INC. 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 Nebraska across the last 5 years, from 2021 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 5 years. 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 = 'NE'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 2,155,714,633.48 2.16 billion 6,132
2100 DEPT OF THE ARMY 1,442,727,022.42 1.44 billion 2,569
9100 EDUCATION, DEPARTMENT OF 1,094,910,344.78 1.09 billion 301
3600 VETERANS AFFAIRS, DEPARTMENT OF 998,537,712.46 998.54 million 3,193
1900 STATE, DEPARTMENT OF 300,768,403.48 300.77 million 396
12K2 AGRICULTURAL MARKETING SERVICE 202,488,288.82 202.49 million 494
97AS DEFENSE LOGISTICS AGENCY 105,018,522.31 105.02 million 69,264
4732 FEDERAL ACQUISITION SERVICE 98,533,424.46 98.53 million 821
2050 INTERNAL REVENUE SERVICE 78,429,975.10 78.43 million 978
1700 DEPT OF THE NAVY 72,348,085.84 72.35 million 586

Insight

Nebraska contract activity over the last 5 years appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEPT OF THE AIR FORCE, followed by DEPT OF THE ARMY, 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 = 'NE'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
NELNET SERVICING, LLC 5JZQ5 901,210,924.87 901.21 million 276
METGREEN SOLUTIONS INC 77T85 608,510,206.83 608.51 million 558
TURNER CONSTRUCTION COMPANY 7N326 392,152,823.00 392.15 million 77
PERATON ENTERPRISE SOLUTIONS LLC 1U305 263,682,924.95 263.68 million 540
WALSH FEDERAL, LLC 6PDH6 262,708,315.00 262.71 million 78
PERSPECTA ENTERPRISE SOLUTIONS LLC 1U305 228,668,569.68 228.67 million 395
SCIENCE APPLICATIONS INTERNATIONAL CORPORATION 8HQV0 209,716,496.06 209.72 million 114
NELNET SERVICING LLC 5JZQ5 192,598,364.90 192.60 million 13
HCI MANAGEMENT SERVICES COMPANY 6FV02 180,034,020.43 180.03 million 298
ALL NATIVE SYNERGIES COMPANY 74CW6 122,643,795.31 122.64 million 47

Insight

Visible obligations in Nebraska over the last 5 years appear concentrated among a relatively small set of leading vendors. NELNET SERVICING, LLC ranks first, followed by METGREEN SOLUTIONS INC, 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 = 'NE'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,172,546,954.68 1.17 billion 1,584
522390 OTHER ACTIVITIES RELATED TO CREDIT INTERMEDIATION 1,094,079,203.40 1.09 billion 290
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,002,823,089.22 1.00 billion 1,377
541519 OTHER COMPUTER RELATED SERVICES 655,218,261.85 655.22 million 1,285
541330 ENGINEERING SERVICES 529,131,403.27 529.13 million 1,544
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 263,962,960.17 263.96 million 239
561210 FACILITIES SUPPORT SERVICES 241,000,400.84 241.00 million 646
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 193,660,620.03 193.66 million 579
311999 ALL OTHER MISCELLANEOUS FOOD MANUFACTURING 128,340,949.82 128.34 million 287
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 125,953,554.67 125.95 million 379

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Nebraska over the last 5 years. 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 = 'NE'
        AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
        AND content__award__productOrServiceInformation__productOrServiceCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
R710 SUPPORT- MANAGEMENT: FINANCIAL 1,093,543,535.98 1.09 billion 293
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 755,019,899.40 755.02 million 1,237
DA10 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SOFTWARE AS A SERVICE 410,247,157.96 410.25 million 171
Z1JZ MAINTENANCE OF MISCELLANEOUS BUILDINGS 392,420,101.36 392.42 million 87
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 347,184,205.72 347.18 million 819
Y1AZ CONSTRUCTION OF OTHER ADMINISTRATIVE FACILITIES AND SERVICE BUILDINGS 187,324,306.39 187.32 million 115
R499 SUPPORT- PROFESSIONAL: OTHER 166,912,467.44 166.91 million 468
R707 SUPPORT- MANAGEMENT: CONTRACT/PROCUREMENT/ACQUISITION SUPPORT 163,390,194.26 163.39 million 204
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 144,705,131.84 144.71 million 160
Y1BZ CONSTRUCTION OF OTHER AIRFIELD STRUCTURES 121,921,981.31 121.92 million 62

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Nebraska over the last 5 years. 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 = 'NE'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 1,334,891,622.43 1.33 billion 20,634
2024 1,160,315,473.13 1.16 billion 16,101
2023 2,144,636,020.89 2.14 billion 18,574
2022 1,329,317,949.60 1.33 billion 19,646
2021 1,218,422,112.15 1.22 billion 18,386

Insight

The annual trend shows how obligations in Nebraska moved across the last 5 years, from 2021 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.