Geography

South Dakota Federal Contract Obligations (Last Year)

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

Use this page to review federal contract obligations in South Dakota 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
SD
State
South Dakota
Total Obligated
1.02 billion
1,020,982,161.40
Award Actions
5,415
Average Action Value
188,547.02

About South Dakota federal contract activity

This page summarizes last full year of federal contract activity associated with South Dakota. Based on the current FPDS Query dataset, this geography shows 1.02 billion in visible obligations across 5,415 award actions, with an average action value of 188,547.02. 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 South Dakota appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by INDIAN HEALTH SERVICE, with 328.63 million 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 South Dakota over the last full year. The current ranking is led by JAYNES CORPORATION, with 172.03 million in obligations, followed by STERLING COMPUTERS 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 South Dakota 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 = 'SD'
        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
7527 INDIAN HEALTH SERVICE 328,633,667.10 328.63 million 986
2100 DEPT OF THE ARMY 232,214,041.39 232.21 million 575
3600 VETERANS AFFAIRS, DEPARTMENT OF 176,556,946.22 176.56 million 531
5700 DEPT OF THE AIR FORCE 44,998,804.92 45.00 million 309
1434 US GEOLOGICAL SURVEY 34,542,736.94 34.54 million 174
97AS DEFENSE LOGISTICS AGENCY 33,520,442.56 33.52 million 1,016
1450 BUREAU OF INDIAN AFFAIRS 20,891,947.04 20.89 million 369
7013 TRANSPORTATION SECURITY ADMINISTRATION 17,076,289.24 17.08 million 8
1700 DEPT OF THE NAVY 15,786,388.28 15.79 million 129
4740 PUBLIC BUILDINGS SERVICE 13,316,605.57 13.32 million 77

Insight

South Dakota contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by INDIAN HEALTH SERVICE, 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 = 'SD'
        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
JAYNES CORPORATION 5CDU5 172,026,426.00 172.03 million 1
STERLING COMPUTERS CORPORATION 06AP0 79,876,803.30 79.88 million 448
FEDERAL CONTRACTING INC 0BZ35 61,133,673.00 61.13 million 11
BLACK HILLS SERVICE COMPANY, LLC 89LX9 56,072,096.00 56.07 million 21
CONTI FEDERAL SERVICES, LLC 86RR8 43,018,970.00 43.02 million 33
TRIBAL HEALTH, LLC 7PD91 36,116,970.15 36.12 million 27
SAW GREENLAND, LLC 9YVQ2 34,638,080.00 34.64 million 3
BL HARBERT INTERNATIONAL LLC 1NRU1 31,824,359.29 31.82 million 13
KBR WYLE SERVICES, LLC 1DDX3 27,273,979.54 27.27 million 107
ROSENBAUER AMERICA LLC 1QCZ3 25,993,143.00 25.99 million 7

Insight

Visible obligations in South Dakota over the last full year appear concentrated among a relatively small set of leading vendors. JAYNES CORPORATION ranks first, followed by STERLING COMPUTERS 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 = 'SD'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 468,425,049.79 468.43 million 345
334111 ELECTRONIC COMPUTER MANUFACTURING 64,506,616.65 64.51 million 363
221122 ELECTRIC POWER DISTRIBUTION 56,849,249.93 56.85 million 50
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 45,542,486.13 45.54 million 49
561320 TEMPORARY HELP SERVICES 27,620,627.36 27.62 million 235
541513 COMPUTER FACILITIES MANAGEMENT SERVICES 27,607,077.40 27.61 million 111
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 27,495,481.81 27.50 million 73
333120 CONSTRUCTION MACHINERY MANUFACTURING 27,492,444.25 27.49 million 13
541519 OTHER COMPUTER RELATED SERVICES 23,579,825.50 23.58 million 180
541330 ENGINEERING SERVICES 18,681,200.59 18.68 million 141

Insight

The top-NAICS table highlights the industries with the largest visible obligations in South Dakota 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 = 'SD'
        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
Y1DA CONSTRUCTION OF HOSPITALS AND INFIRMARIES 213,341,119.11 213.34 million 55
Y1BZ CONSTRUCTION OF OTHER AIRFIELD STRUCTURES 101,302,803.10 101.30 million 37
Q999 MEDICAL- OTHER 59,050,433.58 59.05 million 153
S119 UTILITIES- OTHER 56,044,235.36 56.04 million 26
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 42,001,554.69 42.00 million 41
Y1NB CONSTRUCTION OF HEATING AND COOLING PLANTS 35,342,495.00 35.34 million 7
Z2DA REPAIR OR ALTERATION OF HOSPITALS AND INFIRMARIES 28,728,706.00 28.73 million 8
3805 EARTH MOVING AND EXCAVATING EQUIPMENT 27,591,697.00 27.59 million 55
L099 TECHNICAL REPRESENTATIVE- MISCELLANEOUS 24,411,360.95 24.41 million 90
7E20 IT and Telecom - End User: Help Desk;Tier 1-2,Workspace,Print,Output,Productivity Tools (HW/Perp SW) 20,803,842.49 20.80 million 176

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in South Dakota 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 = 'SD'
        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 1,020,982,161.40 1.02 billion 5,415

Insight

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