Award Number

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

Award record for award number 36C10G22K0074 under agency ID 3600, showing obligations over the last 5 years.

This page summarizes federal procurement activity for award 36C10G22K0074 under agency ID 3600. In the last 5 years, the award shows 1 action and total obligated amounts of 5.06 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts shown here are based on the provided analysis window and reflect a total obligated exact value of 5,059,292,057.27.

Agency ID
3600
PIID
36C10G22K0074
Type
Award
Total Obligated
5.06 billion
5,059,292,057.27
Actions
1
Average Action Value
5,059,292,057.27

Overview

The award record for 36C10G22K0074 shows a single action in the available 5-year window. Total obligated funding is 5,059,292,057.27, with the same value reflected as the average action value because only one action is present.

How to use this page

Use this page to review the award's obligation level and action count within the last 5 years. It is useful for quick reference when comparing this award against other procurement records under agency ID 3600.

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 = '36C10G22K0074'
    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 5,059,292,057.27 5.06 billion 1

Insight

For PIID 36C10G22K0074 over the 5-year window, all reported obligations are concentrated in a single top agency: the Department of Veterans Affairs (agency 3600). The award is associated with one award record and total obligated funding of $5.06 billion, indicating complete agency concentration with no distribution across additional 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 = '36C10G22K0074'
        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
OPTUM PUBLIC SECTOR SOLUTIONS, INC. 4KU58 5,059,292,057.27 5.06 billion 1

Insight

Obligations for PIID 36C10G22K0074 over the 5-year window are fully concentrated with a single vendor, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58), which accounts for $5.06 billion across 1 award. This indicates complete vendor concentration for the award and no observable distribution among additional vendors in the provided data.

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 = '36C10G22K0074'
    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
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 5,059,292,057.27 5.06 billion 1

Insight

All reported obligations under PIID 36C10G22K0074 in the 5-year window are concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The award activity is fully concentrated in a single NAICS code and a single award, with total obligated dollars of $5.06 billion. This indicates no observable distribution across multiple industry classifications within the provided data.

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 = '36C10G22K0074'
    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
Q201 MEDICAL- GENERAL HEALTH CARE 5,059,292,057.27 5.06 billion 1

Insight

Over the 5-year window, this award is fully concentrated in PSC Q201, Medical-General Health Care. All reported obligated dollars, totaling $5.06 billion across 1 award, are associated with this single PSC, indicating no distribution across other product/service categories in the provided data. This level of concentration suggests the award is narrowly scoped within a medical general health care requirement.

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 = '36C10G22K0074'
    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 5,059,292,057.27 5.06 billion 1

Insight

For PIID 36C10G22K0074, the 5-year annual trend is concentrated entirely in FY 2022, with $5.06 billion obligated across 1 award. This indicates no observed distribution across other years within the provided window and suggests a single-year obligation concentration. The absence of additional annual rows limits assessment of multi-year trend behavior.

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.