PSC Code

PSC 7030 Federal Contract Obligations (Last 10 Years)

PSC 7030 covers information technology software obligations across federal procurement activity in the last 10 years.

Federal agencies obligated 37.52 billion across 174,572 award actions for PSC 7030, with an average action value of 214,950.39. The market is concentrated in defense and civilian IT buyers, led by the Department of the Navy, Department of the Army, Department of the Air Force, DISA, and the Social Security Administration.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations shown here peak in 2021 at 2.73 billion and decline to 149.86 million in 2025, based on the current analysis window.

PSC Code
7030
PSC Description
INFORMATION TECHNOLOGY SOFTWARE
Total Obligated
37.52 billion
37,524,321,104.45
Award Actions
174,572
Average Action Value
214,950.39

About PSC 7030 federal contract activity

PSC 7030, Information Technology Software, accounts for 37.52 billion in obligated dollars across 174,572 awards over the last 10 years, with an average award value of 214,950.39. The volume of awards and the scale of obligations indicate a broad software procurement base spanning enterprise licenses, subscriptions, maintenance, and related IT software buying patterns. This PSC is one of the most active software categories in FPDS by both transaction count and total dollars.

Agency demand and leading federal buyers

The Department of the Navy, Department of the Army, and Department of the Air Force are the largest obligating agencies in this PSC, each exceeding 3.7 billion in total obligations over the analysis period. DISA also ranks among the top obligators at 2.52 billion, reflecting its central role in enterprise IT services and software acquisition. The Social Security Administration rounds out the top five with 2.26 billion, showing that software spending is concentrated in both defense and civilian mission environments.

Vendor concentration and leading contractors

CARAHSOFT TECHNOLOGY CORPORATION leads vendor obligations at 1.53 billion and 3,519 awards, making it the most prolific supplier in this PSC by both dollars and award count. LEIDOS, INC. has a comparable dollar total at 1.40 billion but far fewer awards, suggesting larger individual awards than the other leading resellers. INSIGHT PUBLIC SECTOR, INC., DELL FEDERAL SYSTEMS L.P., and DLT SOLUTIONS, LLC also hold substantial positions, reinforcing the dominance of major software resellers and integrators in federal software purchasing.

Annual contract trend over the analysis window

Obligations have declined sharply in the most recent years shown, falling from 2.73 billion in 2021 to 1.74 billion in 2022, 969.08 million in 2023, 486.51 million in 2024, and 149.86 million in 2025 to date. Award counts followed the same pattern, indicating a broad reduction in both transaction volume and obligated dollars rather than a shift toward larger, fewer awards. The trend suggests a post-2021 contraction in software spending within this PSC, though 2025 is likely incomplete.

How to interpret this page

This analysis is based on FPDS awards coded to PSC 7030 over the last 10 years and summarizes obligated dollars, award counts, and average award value. Agency and vendor rankings reflect total obligated amount within the selected PSC, and annual trend figures show obligations and award counts by fiscal year. Values are reported as provided and should be interpreted as FPDS obligation data, not outlays or contract ceiling values.

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__productOrServiceInformation__productOrServiceCode = '7030'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,838,552,498.41 3.84 billion 23,854
2100 DEPT OF THE ARMY 3,813,447,597.39 3.81 billion 20,387
5700 DEPT OF THE AIR FORCE 3,768,915,063.26 3.77 billion 15,446
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 2,520,393,657.05 2.52 billion 5,735
2800 SOCIAL SECURITY ADMINISTRATION 2,262,638,567.52 2.26 billion 2,353
97DH DEFENSE HEALTH AGENCY (DHA) 1,614,253,476.14 1.61 billion 750
1900 STATE, DEPARTMENT OF 1,595,802,795.16 1.60 billion 6,450
7014 U.S. CUSTOMS AND BORDER PROTECTION 1,411,833,184.05 1.41 billion 3,796
2050 INTERNAL REVENUE SERVICE 1,392,522,139.61 1.39 billion 3,846
1205 USDA, DEPARTMENTAL ADMINISTRATION 1,267,134,584.49 1.27 billion 3,503

Insight

PSC 7030 obligations totaled $37.52 billion across 174,572 awards over the last 10 years, with an average award value of $214,950. Top spending is concentrated in defense agencies: the Department of the Navy, Department of the Army, Department of the Air Force, and DISA together account for the largest shares of obligation volume. Outside Defense, the next highest obligators are SSA, DHA, State, CBP, IRS, and USDA Departmental Administration, indicating a broad civilian demand base but at materially lower obligation levels than the leading defense buyers.

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(anyHeavy(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__productOrServiceInformation__productOrServiceCode = '7030'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
CARAHSOFT TECHNOLOGY CORPORATION 1P3C5 1,528,658,168.49 1.53 billion 3,519
LEIDOS, INC. 5UTE1 1,398,716,580.56 1.40 billion 196
INSIGHT PUBLIC SECTOR, INC. 06ZC1 1,302,448,014.03 1.30 billion 2,574
DELL FEDERAL SYSTEMS L.P. 3XAU1 1,269,361,918.72 1.27 billion 1,640
DLT SOLUTIONS, LLC 0S0H9 1,238,592,689.76 1.24 billion 4,718
CARAHSOFT TECHNOLOGY CORP. 1P3C5 1,104,188,715.62 1.10 billion 5,275
CDW GOVERNMENT LLC 1KH72 892,891,921.82 892.89 million 3,062
MINBURN TECHNOLOGY GROUP, LLC 66LV8 839,689,141.14 839.69 million 887
MYTHICS, INC 1TA34 800,631,799.04 800.63 million 955
EMERGENT, LLC 4J2K1 692,162,194.82 692.16 million 1,570

Insight

PSC 7030 obligations total $37.52 billion across 174,572 awards over the last 10 years, with an average award value of $214,950. The top 10 vendors account for a large share of spend and are led by CARAHSOFT TECHNOLOGY CORPORATION at $1.53 billion, followed closely by LEIDOS, INC. at $1.40 billion, INSIGHT PUBLIC SECTOR, INC. at $1.30 billion, and DELL FEDERAL SYSTEMS L.P. at $1.27 billion. Award distribution is fragmented relative to dollars obligated, with multiple vendors receiving high award counts but more moderate total obligations; CARAHSOFT TECHNOLOGY CORPORATION appears twice in the ranking under the same CAGE code, indicating name variation for the same vendor entity.

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__productOrServiceInformation__productOrServiceCode = '7030'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 149,858,238.14 149.86 million 923
2024 486,508,037.16 486.51 million 1,781
2023 969,075,633.71 969.08 million 3,427
2022 1,743,122,168.84 1.74 billion 5,755
2021 2,728,157,352.72 2.73 billion 9,182
2020 6,931,681,543.43 6.93 billion 27,884
2019 6,312,186,401.90 6.31 billion 26,927
2018 6,348,980,551.31 6.35 billion 29,334
2017 6,065,773,927.37 6.07 billion 35,703
2016 5,788,977,249.87 5.79 billion 33,656

Insight

PSC 7030 (Information Technology Software) obligated $37.52 billion across 174,572 awards over the last 10 years, with an average award value of $214,950. Obligations were concentrated in 2016-2020, peaking at $6.93 billion in 2020; annual obligations then declined sharply to $2.73 billion in 2021 and continued down to $149.86 million in 2025. Award counts followed a similar pattern, rising to a high of 35,703 in 2017 before contracting to 923 in 2025, indicating a materially reduced volume of software awards in the most recent years.

Use FPDS Query for deeper PSC analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper PSC analysis across agencies, vendors, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.