Award Number

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

Award number 36C10G22K0073 under agency ID 3600 shows one recorded action in the last 10 years with total obligations of $4.21 billion.

This award record provides a focused view of PIID 36C10G22K0073 for agency ID 3600 over the last 10 years. The dataset shows one action with total obligated dollars of $4,207,079,177.46.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the provided analysis window and use the exact obligated total of $4,207,079,177.46.

Agency ID
3600
PIID
36C10G22K0073
Type
Award
Total Obligated
4.21 billion
4,207,079,177.46
Actions
1
Average Action Value
4,207,079,177.46

Overview

This page summarizes the federal award identified by PIID 36C10G22K0073 for agency ID 3600. Within the last 10 years, the record includes one award action and total obligated funding of $4,207,079,177.46, with an average action value equal to the full obligation amount.

How to use this page

Use this page to review the award-level obligation history associated with PIID 36C10G22K0073. The single-action structure means the total obligated amount and the average action value are the same, which helps frame this record for procurement analysis and comparisons.

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 = '36C10G22K0073'
    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 4,207,079,177.46 4.21 billion 1

Insight

For PIID 36C10G22K0073 over the 10-year window, all reported obligations are concentrated in a single top agency: the Department of Veterans Affairs (agency 3600). The agency account totals $4.21 billion across one award record, indicating complete concentration rather than a distributed funding pattern. This reflects a highly focused obligation profile for the award within the queried 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 = '36C10G22K0073'
        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
OPTUM PUBLIC SECTOR SOLUTIONS, INC. 4KU58 4,207,079,177.46 4.21 billion 1

Insight

Obligations for PIID 36C10G22K0073 are fully concentrated with a single vendor, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58), accounting for $4.21 billion across one award over the 10-year window. This indicates an extreme vendor concentration with no distribution across 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 = '36C10G22K0073'
    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
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 4,207,079,177.46 4.21 billion 1

Insight

Obligations for award 36C10G22K0073 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with $4.21 billion obligated across one award action. This indicates a complete single-NAICS concentration for the 10-year window, with no observable distribution across other NAICS categories in 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 = '36C10G22K0073'
    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
Q201 MEDICAL- GENERAL HEALTH CARE 4,207,079,177.46 4.21 billion 1

Insight

Over the 10-year window, obligations on this award are fully concentrated in PSC Q201, Medical-General Health Care. The single recorded award action accounts for $4.21 billion in total obligated value, indicating complete product/service concentration with no diversification across PSCs in the provided data. This pattern suggests the award’s funded activity is narrowly aligned to medical general health care services.

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 = '36C10G22K0073'
    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 4,207,079,177.46 4.21 billion 1

Insight

Across the 10-year window, obligations for PIID 36C10G22K0073 are fully concentrated in a single year, 2022. The award shows one recorded action in that year with total obligated dollars of $4.21 billion, indicating a highly concentrated funding pattern rather than a distributed multi-year trend. No other yearly activity is provided in the observed rows.

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.