Award Number

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

Federal procurement summary for award number 36C10G21K0088 under agency ID 3600, covering obligations in the last 5 years.

This page presents award-level activity for PIID 36C10G21K0088 within agency ID 3600 over the last 5 years. The record shows 1 award action with total obligated dollars of 2.75 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation figures are shown as reported in the source data, with exact total obligated value of 2747128192.23.

Agency ID
3600
PIID
36C10G21K0088
Type
Award
Total Obligated
2.75 billion
2,747,128,192.23
Actions
1
Average Action Value
2,747,128,192.23

Overview

This award record contains one reported action in the analysis window, with total obligated dollars equal to 2747128192.23. The average action value matches the total obligated amount because only one action is recorded. The readable total is 2.75 billion.

How to use this page

Use this page to review the award number, obligated amount, and action count for PIID 36C10G21K0088. It is most useful for quick procurement reference, cross-checking reported obligations, and comparing this award against other records in 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 = '36C10G21K0088'
    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 2,747,128,192.23 2.75 billion 1

Insight

For PIID 36C10G21K0088 over the 5-year window, obligations are fully concentrated within a single agency: the Department of Veterans Affairs. The award records one obligation totaling $2.75 billion across one award count, indicating no cross-agency distribution in the provided data. This pattern reflects complete agency concentration 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 = '36C10G21K0088'
        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 2,747,128,192.23 2.75 billion 1

Insight

Obligations for PIID 36C10G21K0088 over the 5-year window are fully concentrated with a single vendor, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58). The vendor accounts for $2.75 billion across one award, indicating a highly concentrated award structure 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 = '36C10G21K0088'
    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 2,747,128,192.23 2.75 billion 1

Insight

Obligations under PIID 36C10G21K0088 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. Over the 5-year window, this NAICS accounts for the entire reported obligated amount of $2.75 billion across a single award, indicating no distribution across other NAICS categories in the provided data. This reflects a highly concentrated award profile by industry classification.

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 = '36C10G21K0088'
    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 2,747,128,192.23 2.75 billion 1

Insight

Obligations for this award are fully concentrated in PSC Q201, Medical-General Health Care, with $2.75 billion obligated across 1 award record. This indicates a single, highly concentrated service classification rather than a distributed PSC mix. Over the 5-year window, the award activity reflected in this section is therefore dominated by one medical services category.

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 = '36C10G21K0088'
    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 2,747,128,192.23 2.75 billion 1

Insight

In the 5-year window, obligations are concentrated in a single observed year: FY 2021, with $2.75 billion obligated across one award. This indicates a highly concentrated annual funding profile with no additional yearly distribution evident in the provided data. The single-award, single-year pattern suggests the obligation activity for PIID 36C10G21K0088 was not spread across multiple years within the reported window.

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.