This page provides a procurement-focused view of award number VA11817F1888 for agency ID 3600 across the last 10 years. The award records 261 actions and $1.73 billion in total obligated value.
Award Number
Award Number 3600 / VA11817F1888 Federal Contract Action Summary (Last 10 Years)
Analyst summary for award number VA11817F1888 under agency ID 3600, covering obligations and action history over the last 10 years.
Values shown reflect the provided 10-year analysis window, with total obligated exact value of 1730532626.58 and average action value of 6630393.21.
Overview
Award number VA11817F1888 is associated with agency ID 3600 and shows sustained procurement activity over the last 10 years. The record includes 261 award actions and total obligated funding of $1,730,532,626.58, with an average action value of $6,630,393.21.
How to use this page
Use this page to review the award's obligation history and compare the overall scale of activity across the analysis window. The action count and obligated totals provide a concise starting point for FPDS review and related procurement analysis.
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 = 'VA11817F1888'
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,730,532,626.58 | 1.73 billion | 261 |
Insight
Within the 10-year window for PIID VA11817F1888, all reported obligations are concentrated in the Department of Veterans Affairs (agency ID 3600). The award is associated with 261 awards totaling $1.73 billion, indicating sustained and material funding concentration within a single agency. No other agencies are reflected in the provided rows, so agency distribution cannot be assessed beyond this sole source.
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 = 'VA11817F1888'
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,730,532,626.58 | 1.73 billion | 261 |
Insight
All reported obligations in this 10-year window are concentrated with DELL FEDERAL SYSTEMS L.P. (CAGE 3XAU1), totaling $1.73 billion across 261 awards. This indicates a highly concentrated vendor profile for PIID VA11817F1888, with no other vendors represented in the provided data. The award distribution suggests sustained, repeated use of the same vendor over time.
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 = 'VA11817F1888'
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 |
|---|---|---|---|---|
| 541519 | OTHER COMPUTER RELATED SERVICES | 1,730,532,626.58 | 1.73 billion | 261 |
Insight
Over the 10-year window, obligations for award PIID VA11817F1888 are fully concentrated in NAICS 541519, Other Computer Related Services. This single NAICS accounts for $1.73 billion across 261 awards, indicating a highly focused procurement profile with no observed diversification in the provided data. The concentration suggests the award activity has been consistently aligned to a narrow set of IT-related services.
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 = 'VA11817F1888'
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 |
|---|---|---|---|---|
| D319 | IT AND TELECOM- ANNUAL SOFTWARE MAINTENANCE SERVICE PLANS | 1,730,532,626.58 | 1.73 billion | 261 |
Insight
Obligations for PIID VA11817F1888 are fully concentrated in PSC D319, IT and telecom annual software maintenance service plans, over the 10-year window. This PSC accounts for the entire reported obligation amount of $1.73 billion across 261 awards, indicating a sustained and highly concentrated spend profile in software maintenance.
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 = 'VA11817F1888'
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 |
|---|---|---|---|
| 2017 | 241,071,714.82 | 241.07 million | 27 |
| 2018 | 273,248,849.41 | 273.25 million | 56 |
| 2019 | 299,792,577.07 | 299.79 million | 87 |
| 2020 | 423,326,577.99 | 423.33 million | 44 |
| 2021 | 481,828,360.97 | 481.83 million | 33 |
| 2022 | 11,530,618.60 | 11.53 million | 12 |
| 2023 | 0.00 | 0.00 | 1 |
| 2024 | -266,072.28 | -266.07 thousand | 1 |
Insight
Obligations for PIID VA11817F1888 were concentrated in 2017–2021, rising from $241.07 million in 2017 to a peak of $481.83 million in 2021, with award counts ranging from 27 to 87 across those years. Activity then dropped sharply in 2022 to $11.53 million, followed by minimal activity in 2023 and a small net deobligation of $266.07 thousand in 2024. This pattern indicates a front-loaded obligation profile with limited recent funding activity.
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.