Award Number

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

FPDS award page for award number 36C10G21K0090 under agency ID 3600, summarizing obligations over the last 10 years.

This page presents procurement activity for award number 36C10G21K0090 within agency ID 3600. The record shows 1 award action with total obligated funding of $2,907,879,002.34.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the last 10 years of available data and the average action value equals the total obligated amount because there is only one action.

Agency ID
3600
PIID
36C10G21K0090
Type
Award
Total Obligated
2.91 billion
2,907,879,002.34
Actions
1
Average Action Value
2,907,879,002.34

Overview

The award record for 36C10G21K0090 under agency ID 3600 shows a single recorded action in the analysis window. Total obligated funding is $2,907,879,002.34, with the same amount as the average action value because only one action is present.

How to use this page

Use this page to review the obligation history tied to this award number and to compare it with other federal procurement records. The figures provided here support basic spending analysis, concentration checks, and record-level reference work.

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 = '36C10G21K0090'
    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 2,907,879,002.34 2.91 billion 1

Insight

Over the 10-year window, obligations for PIID 36C10G21K0090 are fully concentrated in a single top agency: the Department of Veterans Affairs. The award record shows one award and $2.91 billion in total obligated value, indicating complete agency concentration with no diversification across additional agencies in the provided data. This pattern suggests the award is wholly associated with VA spending activity for this PIID.

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 = '36C10G21K0090'
        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 2,907,879,002.34 2.91 billion 1

Insight

Obligations for PIID 36C10G21K0090 are fully concentrated with a single vendor, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58), which received the entire reported amount of $2.91 billion across one award. This indicates no vendor distribution within the provided 10-year window for this award record.

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 = '36C10G21K0090'
    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 2,907,879,002.34 2.91 billion 1

Insight

Obligations for PIID 36C10G21K0090 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The award records 1 action in this NAICS, with total obligated funding of $2.91 billion over the 10-year window. This indicates a single-industry, highly concentrated award profile with no diversification across other NAICS codes 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 = '36C10G21K0090'
    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 2,907,879,002.34 2.91 billion 1

Insight

Obligations are fully concentrated in PSC Q201, Medical- General Health Care, with $2.91 billion obligated across a single award. This indicates a highly concentrated procurement profile for PIID 36C10G21K0090 over the 10-year window, with no distribution across additional PSCs in the provided data.

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 = '36C10G21K0090'
    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
2021 2,907,879,002.34 2.91 billion 1

Insight

For PIID 36C10G21K0090, the 10-year annual trend reflects a single reported award action in 2021, with total obligated dollars of $2.91 billion. Obligations are fully concentrated in that year, indicating no distribution across other years within the provided data. This pattern suggests a one-time or highly concentrated funding profile rather than a recurring annual obligation stream.

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.