This page summarizes award 36C10B22F0089 for agency ID 3600 over the last 5 years. The record shows 56 award actions with total obligated amount of 1.59 billion.
Award Number
Award Number 3600 / 36C10B22F0089 Federal Contract Action Summary (Last 5 Years)
Federal procurement analysis for award 36C10B22F0089 under agency ID 3600, covering the last 5 years of award activity.
Dollar values are based on the provided analysis window and reflect a total obligated exact value of 1590224177.53 and an average action value of 28396860.31.
Overview
Award 36C10B22F0089 is associated with agency ID 3600 and shows 56 recorded actions in the last 5 years. Total obligated dollars for the period are 1590224177.53, with an average action value of 28396860.31. The readable total rounds to 1.59 billion for summary purposes.
How to use this page
Use this page to review award-level obligation volume and action frequency for 36C10B22F0089 over the selected period. The figures support basic procurement analysis, including comparison of total obligated value, average action size, and activity level across the 56 actions.
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 5 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
Over the 5-year window, obligations for PIID 36C10B22F0089 are fully concentrated within the Department of Veterans Affairs (Agency ID 3600). The award accounts for $1.59 billion across 56 actions, indicating all recorded obligation activity in this section is attributable to a single top agency. This pattern reflects a highly concentrated award profile with no distribution across multiple agencies 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 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 | Actions |
|---|---|---|---|---|
| DELL FEDERAL SYSTEMS L.P. | 3XAU1 | 1,590,224,177.53 | 1.59 billion | 56 |
Insight
DELL FEDERAL SYSTEMS L.P. is the only vendor listed for this award in the 5-year window, indicating complete vendor concentration in the observed data. The award shows $1.59 billion in total obligated value across 56 awards, or an average of about $28.4 million per award. This pattern suggests sustained reliance on a single vendor rather than a distributed vendor base.
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 5 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
For award PIID 36C10B22F0089 over the 5-year window, obligations are concentrated entirely in NAICS 511210, Software Publishers. This NAICS accounts for $1.59 billion across 56 awards, indicating a strong and sustained reliance on software publishing services within this award record. No other NAICS codes are present in the provided rows, so the distribution is fully concentrated in a single industry category.
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 5 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
Obligated dollars for award PIID 36C10B22F0089 are entirely concentrated in PSC DA01 over the 5-year window, with $1.59 billion across 56 awards. This indicates a highly focused spend profile centered on IT and telecom business application/application development support services labor. No other PSC categories are present in the provided data, so the observed distribution is fully concentrated in a single PSC.
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 5 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 for PIID 36C10B22F0089 were concentrated in FY 2022-FY 2024, ranging from $479.94 million to $577.76 million annually, with award counts remaining relatively stable at 16-19. FY 2023 was the peak year by obligated amount, followed by a modest decline in FY 2024. FY 2025 reflects a sharp reduction to $7.02 million across 5 awards, indicating a materially lower obligation level in the current period relative to prior years.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.