This page presents award-level procurement activity for PIID 36C10G22K0075 under agency ID 3600. The analysis window covers the last 10 years and shows one recorded action with total obligated amount of 5.24 billion dollars.
Award Number
Award Number 3600 / 36C10G22K0075 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for agency 3600 and award number 36C10G22K0075, summarizing obligations over the last 10 years.
Obligation totals are based on the provided readable amount of 5.24 billion and exact amount of 5241285242.1.
Overview
Award number 36C10G22K0075 is associated with agency ID 3600 in the last 10 years of observed data. The award shows a single action and total obligations of 5.24 billion dollars, with an exact total of 5241285242.1. The average action value matches the total because only one action is recorded.
How to use this page
Use this page to review award-level obligation activity for PIID 36C10G22K0075 and compare it with other awards in the same agency dataset. The single-action structure means the total obligated amount and average action value are the same for the analysis window. This makes the award useful for identifying a concentrated obligation record rather than a multi-action funding pattern.
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 = '36C10G22K0075'
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 | 5,241,285,242.10 | 5.24 billion | 1 |
Insight
Within the 10-year window, all reported obligated value for PIID 36C10G22K0075 is concentrated in a single agency, the Department of Veterans Affairs (agency ID 3600). The award reflects one reported obligation totaling $5.24 billion across one award record, indicating a fully concentrated spending pattern with no distribution across additional agencies in this section. This concentration suggests the award’s activity is entirely attributable to a single agency relationship.
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 = '36C10G22K0075'
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 | 5,241,285,242.10 | 5.24 billion | 1 |
Insight
Obligations under PIID 36C10G22K0075 are highly concentrated in a single vendor over the 10-year window. OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58) accounts for $5.24 billion across 1 award, indicating complete vendor concentration within 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 = '36C10G22K0075'
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 | 5,241,285,242.10 | 5.24 billion | 1 |
Insight
Obligations for PIID 36C10G22K0075 are entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with one award accounting for $5.24 billion over the 10-year window. This indicates a highly specialized, non-diversified award profile with no observable distribution across additional NAICS categories in the provided data. The concentration suggests the instrument is tied exclusively to a single health insurance carrier activity.
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 = '36C10G22K0075'
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 | 5,241,285,242.10 | 5.24 billion | 1 |
Insight
The award is fully concentrated in PSC Q201, Medical- General Health Care, with one award accounting for $5.24 billion in obligated value over the 10-year window. This indicates a highly concentrated obligation profile with no visible PSC diversification 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 = '36C10G22K0075'
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 | 5,241,285,242.10 | 5.24 billion | 1 |
Insight
Over the 10-year window, this award shows activity only in 2022, with $5.24 billion obligated across a single award action. The entire observed obligation is concentrated in one year and one record, indicating no distribution across multiple years within the provided data. This pattern suggests a highly concentrated funding profile rather than a multi-year trend.
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.