This page summarizes procurement activity tied to award number 36C10G23K0058 for agency ID 3600. The record shows 1 award action with total obligations of $2.22 billion over the last 10 years.
Award Number
Award Number 3600 / 36C10G23K0058 Federal Contract Action Summary (Last 10 Years)
FPDS award record for award number 36C10G23K0058 under agency ID 3600, showing obligations and action history for the last 10 years.
Dollar figures reflect the provided total obligated exact value of 2224839172.7 and the corresponding readable amount of $2.22 billion.
Overview
The award record for PIID 36C10G23K0058 is associated with agency ID 3600 and shows a single action in the analysis window. Total obligated value is 2,224,839,172.7, which rounds to $2.22 billion, and the average action value matches the full obligated total because there is only one action.
How to use this page
Use this page to review the obligation level and action count for award number 36C10G23K0058. It provides a concise procurement summary for the last 10 years and supports comparison with other award records under the same agency ID.
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 = '36C10G23K0058'
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,224,839,172.70 | 2.22 billion | 1 |
Insight
Over the 10-year window, all reported obligations for PIID 36C10G23K0058 are concentrated within a single top agency, the Department of Veterans Affairs. The award is represented by one award record with $2.22 billion in total obligated value, indicating full concentration rather than a distributed obligation pattern across agencies. This level of concentration suggests the award’s fiscal activity is tied entirely to one agency relationship in the available FPDS data.
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 = '36C10G23K0058'
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,224,839,172.70 | 2.22 billion | 1 |
Insight
Obligations in this 10-year window are entirely concentrated in a single vendor. TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3) accounts for $2.22 billion across 1 award, indicating a highly concentrated award distribution for PIID 36C10G23K0058. No additional vendors appear in the provided rows, so vendor diversity cannot be assessed from this excerpt.
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 = '36C10G23K0058'
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,224,839,172.70 | 2.22 billion | 1 |
Insight
Obligations are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with 1 award totaling $2.22 billion over the 10-year window. This indicates a highly concentrated award profile with no visible diversification across NAICS codes in the provided data. The single-award structure suggests the contract action is tied to a specialized health insurance procurement rather than a broad mix of goods or 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 = '36C10G23K0058'
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,224,839,172.70 | 2.22 billion | 1 |
Insight
This award is highly concentrated in PSC G007, Social-Government Health Insurance Programs, which accounts for $2.22 billion across 1 award in the 10-year window. The obligation profile indicates complete concentration in a single PSC with no observed diversification across other product or service codes in the provided data. Such concentration suggests this award is tied to a specific health insurance program requirement rather than a mixed portfolio of goods or services.
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 = '36C10G23K0058'
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 |
|---|---|---|---|
| 2023 | 2,224,839,172.70 | 2.22 billion | 1 |
Insight
For the 10-year window, this award shows activity only in 2023, with total obligated dollars of $2.22 billion across a single award action. Obligations are fully concentrated in one year and one award, indicating no multi-year distribution in the provided data. This pattern suggests a point-in-time obligation rather than a sustained annual 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.