Award Number

Award Number 3600 / VA11817F1888 Federal Contract Action Summary (Last 5 Years)

Award number VA11817F1888 for Agency ID 3600 reflects 47 recorded actions over the last 5 years and $493.09 million in total obligated value.

This page summarizes federal procurement activity for award number VA11817F1888 under Agency ID 3600 during the last 5 years. The record shows 47 award actions and total obligated value of $493,092,907.29.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are shown in both readable and exact formats, with an average action value of $10,491,338.45 across the analyzed period.

Agency ID
3600
PIID
VA11817F1888
Type
Award
Total Obligated
493.09 million
493,092,907.29
Actions
47
Average Action Value
10,491,338.45

Overview

The award record for VA11817F1888 shows procurement activity concentrated across 47 actions in the last 5 years. Total obligated value is $493,092,907.29, with an average action value of $10,491,338.45. These figures describe the scale of the award and its documented action history.

How to use this page

Use this page to review award-level procurement activity, compare obligated value over time, and reference the action count for the selected analysis window. The figures support basic trend review and award profiling without adding details not present in the source inputs.

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 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 493,092,907.29 493.09 million 47

Insight

Over the 5-year window, obligations for PIID VA11817F1888 are fully concentrated within the Department of Veterans Affairs (agency ID 3600). The award accounts for 47 actions and $493.09 million in total obligated value, indicating a single-agency distribution with no cross-agency dispersion in the provided data. This concentration suggests the award has been administered entirely within VA over the period.

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 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 493,092,907.29 493.09 million 47

Insight

Over the 5-year window, obligations for PIID VA11817F1888 are fully concentrated with a single vendor, DELL FEDERAL SYSTEMS L.P. (CAGE 3XAU1). The vendor accounts for $493.09 million across 47 awards, indicating repeated obligation activity rather than a broad supplier distribution. This pattern suggests a highly concentrated award profile with limited vendor diversity for this PIID.

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 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
541519 OTHER COMPUTER RELATED SERVICES 493,092,907.29 493.09 million 47

Insight

Obligations for PIID VA11817F1888 are fully concentrated in NAICS 541519, Other Computer Related Services, over the 5-year window. This category accounts for $493.09 million across 47 awards, indicating a consistent procurement pattern within a single professional services code. No other NAICS codes are present in the provided data, so there is no observable distribution across multiple industry sectors.

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 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
D319 IT AND TELECOM- ANNUAL SOFTWARE MAINTENANCE SERVICE PLANS 493,092,907.29 493.09 million 47

Insight

Award activity for PIID VA11817F1888 is fully concentrated in PSC D319, IT and Telecom annual software maintenance service plans, over the 5-year window. This PSC accounts for $493.09 million across 47 awards, indicating sustained obligation activity in a single product/service category rather than a diversified PSC mix. The concentration suggests this award is primarily used for recurring software maintenance requirements.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 are highly concentrated in 2021, when 33 awards accounted for $481.83 million. Activity dropped sharply in 2022 to $11.53 million across 12 awards, then declined to one award with no obligated amount in 2023 and one award with a negative obligation of $266.07 thousand in 2024. This pattern indicates a steep post-2021 contraction in obligated dollars and award volume, with only minimal activity in the most recent 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.