This page summarizes the award-level obligation history for PIID 36C10G21K0089 within agency ID 3600 over the last five years. The record shows one reported action with total obligated amount of $3,088,852,520.23.
Award Number
Award Number 3600 / 36C10G21K0089 Federal Contract Action Summary (Last 5 Years)
Federal procurement award record for award number 36C10G21K0089 under agency ID 3600, showing last-5-year obligation activity.
Amounts reflect the provided readable and exact obligated totals for the analysis window and should be read alongside the single recorded action.
Overview
The award record for PIID 36C10G21K0089 shows a single action in the last five years, with total obligated funding of $3,088,852,520.23. The average action value matches the total obligated amount because only one action is reported. This page is intended to support award-level review of obligation activity for agency ID 3600.
How to use this page
Use this page to review the reported obligation total and action count for award number 36C10G21K0089. The figures are useful for basic award tracking, comparing obligation levels, and identifying records that may warrant follow-up in the underlying procurement data.
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 = '36C10G21K0089'
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 | 3,088,852,520.23 | 3.09 billion | 1 |
Insight
Over the 5-year window, all recorded obligations for PIID 36C10G21K0089 are concentrated within a single agency: the Department of Veterans Affairs (Agency ID 3600). The award is fully concentrated in one award record, with $3.09 billion obligated across one award count. This indicates no cross-agency distribution in the provided data and suggests the award’s funding profile is entirely tied to VA activity.
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 = '36C10G21K0089'
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 | 3,088,852,520.23 | 3.09 billion | 1 |
Insight
The top vendor account for this award is OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58), with $3.09 billion obligated across 1 award over the 5-year window. Obligations are fully concentrated with a single vendor and single award action, indicating no distribution across multiple top vendors in this 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 = '36C10G21K0089'
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 | 3,088,852,520.23 | 3.09 billion | 1 |
Insight
Obligations are fully concentrated in a single NAICS code, 524114, Direct Health and Medical Insurance Carriers, with $3.09 billion obligated across 1 award. This indicates no NAICS diversification within the 5-year window for PIID 36C10G21K0089. The pattern suggests the award activity is wholly aligned to health and medical insurance carrier services.
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 = '36C10G21K0089'
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 | 3,088,852,520.23 | 3.09 billion | 1 |
Insight
Over the 5-year window, this award’s obligations are fully concentrated in PSC Q201, Medical- General Health Care. The single recorded action accounts for 100% of obligated dollars, totaling $3.09 billion across one award entry. This indicates an extremely narrow PSC distribution with no observed diversification in obligated activity for this PIID.
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 = '36C10G21K0089'
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 | 3,088,852,520.23 | 3.09 billion | 1 |
Insight
Within the 5-year window, all reported obligations for PIID 36C10G21K0089 are concentrated in a single year, 2021, with one award and $3.09 billion obligated. This indicates no observable multi-year distribution or recurring annual funding pattern in the provided data. The award’s obligation profile is therefore highly concentrated and entirely attributable to 2021.
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.