PSC Code

PSC DA01 Federal Contract Obligations (Last 5 Years)

PSC DA01 covers IT and telecom business application and application development support services performed on a labor basis, with $79.80 billion obligated across 94,809 actions in the last five years.

Recent obligations under DA01 are concentrated in large civilian and defense buyers, led by the Department of Veterans Affairs, the Federal Acquisition Service, the Department of the Air Force, the Department of the Navy, and the Centers for Medicare and Medicaid Services. The vendor base is led by Booz Allen Hamilton, Accenture Federal Services, General Dynamics Information Technology, Cerner Government Services, and Leidos, while annual obligations rose from $7.12 billion in 2021 to $21.65 billion in 2025.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last five years of FPDS award actions for PSC DA01 and are based on obligated amounts and action counts provided in the source data.

PSC Code
DA01
PSC Description
IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR)
Total Obligated
79.80 billion
79,802,409,750.59
Award Actions
94,809
Average Action Value
841,717.66

About PSC DA01 federal contract activity

PSC DA01, IT and telecom business application/application development support services (labor), accounts for 79.80 billion in obligated dollars across 94,809 awards over the last 5 years, with an average award value of 841,717.66. The volume and dollar base indicate a sustained demand for labor-oriented application development and support across federal programs, with spending concentrated in a relatively small number of high-value buyers and vendors.

Agency demand and leading federal buyers

The Department of Veterans Affairs leads obligations at 12.41 billion across 3,074 awards, followed by the Federal Acquisition Service at 10.22 billion and the Department of the Air Force at 7.89 billion. The Department of the Navy stands out for award count, with 36,009 awards and 7.34 billion obligated, indicating a much more fragmented buying pattern than the other top agencies. CMS also ranks among the largest buyers at 4.34 billion, underscoring demand from civilian health IT programs.

Vendor concentration and leading contractors

Booz Allen Hamilton Inc. is the largest vendor in this PSC with 4.08 billion obligated across 1,209 awards, followed by Accenture Federal Services LLC at 3.21 billion and General Dynamics Information Technology, Inc. at 3.18 billion. Cerner Government Services, Inc. has 3.11 billion across only 212 awards, suggesting larger individual awards, while Leidos, Inc. combines 2.63 billion with 16,066 awards, indicating a broad distribution of tasking across many actions.

Annual contract trend over the analysis window

Annual obligations rose sharply from 7.12 billion in 2021 to 13.27 billion in 2022 and 16.13 billion in 2023, then reached 21.64 billion in 2024 and 21.65 billion in 2025. Award counts also increased each year, from 6,472 in 2021 to 32,842 in 2025, showing both higher spend and expanding transaction volume over the period. The near-flat year-over-year level between 2024 and 2025 suggests continued high demand rather than another major step-up.

How to interpret this page

This summary is based on FPDS obligations classified under PSC DA01 for the last 5 years and aggregates only the provided totals, counts, and annual values. Agency and vendor rankings reflect obligated dollars within the analysis window, and award counts are reported as given. No attempt was made to infer contract types, performance outcomes, or unprovided subcategory detail.

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 = 'DA01'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 12,405,895,193.80 12.41 billion 3,074
4732 FEDERAL ACQUISITION SERVICE 10,223,121,885.19 10.22 billion 3,748
5700 DEPT OF THE AIR FORCE 7,890,945,937.44 7.89 billion 8,357
1700 DEPT OF THE NAVY 7,344,496,175.86 7.34 billion 36,009
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 4,343,205,851.65 4.34 billion 1,300
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 3,321,956,502.95 3.32 billion 3,171
2050 INTERNAL REVENUE SERVICE 2,878,987,612.86 2.88 billion 1,966
97AS DEFENSE LOGISTICS AGENCY 2,729,592,627.08 2.73 billion 1,641
7529 NATIONAL INSTITUTES OF HEALTH 2,017,883,778.24 2.02 billion 1,473
97DH DEFENSE HEALTH AGENCY (DHA) 1,943,559,959.13 1.94 billion 1,351

Insight

Over the last 5 years, DA01 obligations totaled $79.80 billion across 94,809 awards, with an average award value of $841,717.66. Obligations are concentrated among a small set of agencies: the Department of Veterans Affairs and the Federal Acquisition Service lead at $12.41 billion and $10.22 billion, respectively, followed by the Department of the Air Force at $7.89 billion and the Department of the Navy at $7.34 billion. The Department of the Navy stands out for volume, with 36,009 awards, indicating a highly distributed award profile relative to dollars obligated. Federal civilian health and revenue agencies, including CMS, IRS, NIH, and DHA, also represent material demand for this PSC, but at lower obligation levels than the top defense and acquisition organizations.

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 = 'DA01'
        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,
        content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
BOOZ ALLEN HAMILTON INC. 17038 4,079,452,360.50 4.08 billion 1,209
ACCENTURE FEDERAL SERVICES LLC 1ZD18 3,213,163,396.73 3.21 billion 1,591
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 3,177,485,803.95 3.18 billion 1,162
CERNER GOVERNMENT SERVICES, INC. 7YVP7 3,109,740,213.61 3.11 billion 212
LEIDOS, INC. 5UTE1 2,629,830,476.71 2.63 billion 16,066
SCIENCE APPLICATIONS INTERNATIONAL CORPORATION 6XWA8 2,348,216,982.26 2.35 billion 606
DELOITTE CONSULTING LLP 1TTG5 1,739,855,688.50 1.74 billion 731
DELL FEDERAL SYSTEMS L.P. 3XAU1 1,595,914,507.92 1.60 billion 119
LIBERTY IT SOLUTIONS, LLC 697P4 1,594,898,137.92 1.59 billion 111
INTERNATIONAL BUSINESS MACHINES CORPORATION 3BXY7 1,508,515,045.13 1.51 billion 544

Insight

Over the last 5 years, DA01 obligations total $79.80 billion across 94,809 awards, with an average award value of $841,717.66. Top vendor obligations are led by Booz Allen Hamilton Inc. ($4.08 billion), followed by Accenture Federal Services LLC ($3.21 billion), General Dynamics Information Technology, Inc. ($3.18 billion), and Cerner Government Services, Inc. ($3.11 billion), indicating a concentrated but not singularly dominated vendor base. Award volume is more dispersed than obligation value, with Leidos, Inc. recording 16,066 awards but $2.63 billion in obligations, while several other top vendors have comparatively high obligations across far fewer awards.

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 = 'DA01'
        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 21,646,358,283.63 21.65 billion 32,842
2024 21,636,268,410.41 21.64 billion 27,908
2023 16,125,871,900.06 16.13 billion 16,687
2022 13,270,441,349.12 13.27 billion 10,900
2021 7,123,469,807.37 7.12 billion 6,472

Insight

DA01 obligations were highly concentrated in the most recent two years, with 2024 and 2025 each at about $21.6 billion and together accounting for more than half of the 5-year total of $79.80 billion. Obligations increased steadily from $7.12 billion in 2021 to $13.27 billion in 2022 and $16.13 billion in 2023, then reached a plateau at the 2024–2025 level. Award counts also rose each year, from 6,472 in 2021 to 32,842 in 2025, indicating both higher activity and larger overall obligated volume in the most recent period.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.