This page summarizes the federal procurement award identified by PIID 36C10G22K0036 for agency 3600. The record shows a single action with total obligated funding of $2,110,778,408.75.
Award Number
Award Number 3600 / 36C10G22K0036 Federal Contract Action Summary (Last 10 Years)
Award number 36C10G22K0036 is an FPDS award record for agency 3600 with one recorded action and total obligations of $2.11 billion over the last 10 years.
Values reflect the last 10 years and are based on the provided award-level obligation totals and action count.
Overview
The award record for PIID 36C10G22K0036 shows a single action in the analysis window. Total obligated funding is $2,110,778,408.75, which is also the average action value because only one action is recorded. This makes the award a straightforward case for tracking total obligations at the award-number level.
How to use this page
Use this page to review the award amount associated with 36C10G22K0036 and to confirm the scale of obligations reported for agency 3600. The action count and obligation totals provide a compact summary for procurement analysis, reporting, and record verification.
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 = '36C10G22K0036'
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,110,778,408.75 | 2.11 billion | 1 |
Insight
Over the 10-year window, obligations for PIID 36C10G22K0036 are fully concentrated in a single agency, the Department of Veterans Affairs (Agency ID 3600). The award record reflects one award and total obligations of $2.11 billion, indicating complete agency concentration rather than distributed activity across multiple agencies. This pattern suggests the award’s obligation history is entirely attributable to VA.
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 = '36C10G22K0036'
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 |
|---|---|---|---|---|
| TRIWEST HEALTHCARE ALLIANCE CORP. | 07TQ3 | 2,110,778,408.75 | 2.11 billion | 1 |
Insight
Obligations for PIID 36C10G22K0036 are fully concentrated with a single vendor over the 10-year window. TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3) accounts for $2.11 billion across 1 award, indicating no vendor diversification within this award record. This pattern suggests a highly concentrated award distribution with all reported obligations attributed to one contractor.
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 = '36C10G22K0036'
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,110,778,408.75 | 2.11 billion | 1 |
Insight
This award is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with one obligation totaling $2.11 billion over the 10-year window. The spend profile indicates no observable distribution across other NAICS codes within the provided data. This level of concentration suggests the award is tied to a single, highly specialized health insurance activity rather than a diversified procurement mix.
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 = '36C10G22K0036'
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 |
|---|---|---|---|---|
| G007 | SOCIAL- GOVERNMENT HEALTH INSURANCE PROGRAMS | 2,110,778,408.75 | 2.11 billion | 1 |
Insight
Obligations for PIID 36C10G22K0036 are fully concentrated in PSC G007, Social-Government Health Insurance Programs. Over the 10-year window, this award account reflects one recorded obligation totaling $2.11 billion across a single PSC and a single award count, indicating no PSC-level 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 = '36C10G22K0036'
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 | 2,110,778,408.75 | 2.11 billion | 1 |
Insight
The 10-year annual trend for award 36C10G22K0036 is entirely concentrated in FY 2022, with one award totaling $2.11 billion obligated. No additional annual activity is provided for other years in the window, so the observed obligation history is singular rather than distributed over time. This indicates the award’s recorded funding is highly concentrated in a single fiscal year.
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.