This page summarizes the award activity tied to PIID 36C10G22K0022 for agency ID 3600. The record shows 1 action with total obligated funding of 4.83 billion dollars.
Award Number
Award Number 3600 / 36C10G22K0022 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number 36C10G22K0022 under agency ID 3600, covering obligations over the last 5 years.
Figures reflect the last 5 years and use a total obligated exact value of 4,826,052,272 with an average action value of 4,826,052,272.
Overview
The award record for PIID 36C10G22K0022 under agency ID 3600 contains one recorded action in the analysis window. Total obligated funding is 4,826,052,272, with an average action value equal to the full award total because only one action is present. This page is intended to support review of the award-level obligation profile over the last 5 years.
How to use this page
Use this page to identify the award’s total obligated amount, confirm the number of recorded actions, and reference the exact PIID. The values shown are limited to the provided analysis window and should be read as a summary of award activity for this record. For comparisons, the average action value matches the total because the award has a single action.
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 = '36C10G22K0022'
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 | 4,826,052,272.00 | 4.83 billion | 1 |
Insight
Over the 5-year window, obligations are fully concentrated in a single agency: the Department of Veterans Affairs (agency ID 3600). This award records $4.83 billion across one award count, indicating complete agency-level concentration with no distribution across other agencies in the provided data. The significance is that the obligation profile is entirely tied to one agency relationship 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 = '36C10G22K0022'
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 |
|---|---|---|---|---|
| TRIWEST HEALTHCARE ALLIANCE CORP. | 07TQ3 | 4,826,052,272.00 | 4.83 billion | 1 |
Insight
Obligations for PIID 36C10G22K0022 are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3), which accounts for $4.83 billion across one award in the 5-year window. This indicates no vendor diversification in the provided data and a highly concentrated obligation profile.
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 = '36C10G22K0022'
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 | 4,826,052,272.00 | 4.83 billion | 1 |
Insight
Over the 5-year window, this award is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. All reported obligations, totaling $4.83 billion across 1 award action, fall within a single NAICS code, indicating no diversification across other industry categories in the provided data. This level of concentration suggests the award is narrowly aligned to health 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 = '36C10G22K0022'
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 |
|---|---|---|---|---|
| G007 | SOCIAL- GOVERNMENT HEALTH INSURANCE PROGRAMS | 4,826,052,272.00 | 4.83 billion | 1 |
Insight
Obligations for PIID 36C10G22K0022 are fully concentrated in PSC G007, Social-Government Health Insurance Programs, with $4.83 billion obligated across a single award in the 5-year window. This indicates an extremely concentrated obligation profile with no visible distribution across other PSCs in the provided data. The award structure suggests the contract is dominated by one programmatic service category rather than multiple product or service lines.
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 = '36C10G22K0022'
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 |
|---|---|---|---|
| 2022 | 4,826,052,272.00 | 4.83 billion | 1 |
Insight
Over the 5-year window, obligations for PIID 36C10G22K0022 are fully concentrated in FY 2022, with one recorded award totaling $4.83 billion. This indicates no observed year-to-year distribution within the provided period and suggests the award activity is isolated to a single fiscal year. Based on the available row, the annual trend is highly concentrated rather than dispersed across multiple years.
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.