Award Number

Award Number 3600 / 36C10B22F0089 Federal Contract Action Summary (Last 10 Years)

FPDS award page for award number 36C10B22F0089 under agency ID 3600, showing obligations and actions over the last 10 years.

This page summarizes procurement activity for award number 36C10B22F0089 within agency ID 3600 across the last 10 years. Total obligated dollars are 1.59 billion across 56 award actions, with an average action value of 28,396,860.31.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may change if additional FPDS records are added or revised.

Agency ID
3600
PIID
36C10B22F0089
Type
Award
Total Obligated
1.59 billion
1,590,224,177.53
Actions
56
Average Action Value
28,396,860.31

Overview

The award record for 36C10B22F0089 is associated with agency ID 3600 and shows 56 actions in the selected 10-year window. Total obligated amount is 1,590,224,177.53, which is approximately 1.59 billion, and the average action value is 28,396,860.31.

How to use this page

Use this page to review the overall obligation level and action frequency tied to this award number. The figures provide a concise starting point for comparing this award against other FPDS records or for tracing activity within the same agency.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '3600' AND content__award__awardID__awardContractID__PIID = '36C10B22F0089'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,590,224,177.53 1.59 billion 56

Insight

For PIID 36C10B22F0089 over the 10-year window, obligations are fully concentrated within the Department of Veterans Affairs (agency ID 3600). The award reflects 56 actions totaling $1.59 billion, indicating a single-agency distribution with no evidence of cross-agency obligated activity in the provided data.

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
        content__award__awardID__awardContractID__agencyID = '3600' AND content__award__awardID__awardContractID__PIID = '36C10B22F0089'
        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,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
DELL FEDERAL SYSTEMS L.P. 3XAU1 1,590,224,177.53 1.59 billion 56

Insight

Over the 10-year window for award PIID 36C10B22F0089, obligations are fully concentrated with a single vendor. DELL FEDERAL SYSTEMS L.P. (CAGE 3XAU1) received $1.59 billion across 56 awards, indicating a sustained and highly concentrated vendor relationship. Because only one vendor is represented, no distribution across suppliers can be observed from this section.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '3600' AND content__award__awardID__awardContractID__PIID = '36C10B22F0089'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
511210 SOFTWARE PUBLISHERS 1,590,224,177.53 1.59 billion 56

Insight

Over the 10-year window for award 36C10B22F0089, obligations are fully concentrated in NAICS 511210, Software Publishers. This category accounts for $1.59 billion across 56 awards, indicating a sustained procurement pattern centered on software publishing activities. No other NAICS categories are present in the provided rows, so the distribution is singular rather than diversified.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '3600' AND content__award__awardID__awardContractID__PIID = '36C10B22F0089'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
DA01 IT AND TELECOM - BUSINESS APPLICATION/APPLICATION DEVELOPMENT SUPPORT SERVICES (LABOR) 1,590,224,177.53 1.59 billion 56

Insight

Over the 10-year window, obligations for PIID 36C10B22F0089 are fully concentrated in PSC DA01, IT and telecom business application/application development support services (labor). This PSC accounts for $1.59 billion across 56 awards, indicating a sustained and highly focused requirement profile rather than a diversified mix of product or service categories.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '3600' AND content__award__awardID__awardContractID__PIID = '36C10B22F0089'
    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 ASC
Year Total Obligated Readable Actions
2022 479,940,451.64 479.94 million 16
2023 577,760,038.48 577.76 million 16
2024 525,502,119.78 525.50 million 19
2025 7,021,567.63 7.02 million 5

Insight

Obligations under PIID 36C10B22F0089 are heavily concentrated in 2022–2024, with annual totals of $479.94 million, $577.76 million, and $525.50 million, respectively. Award counts were stable at 16 in 2022 and 2023, increased to 19 in 2024, and then declined to 5 in 2025. The 2025 total of $7.02 million is sharply below prior years, indicating a pronounced drop in obligated value for the current year-to-date period.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.