Award Number

Award Number 3600 / 36C10G21K0087 Federal Contract Action Summary (Last 10 Years)

Federal award record for award number 36C10G21K0087 under agency ID 3600, showing obligations within the last 10 years.

This page summarizes the procurement history for award number 36C10G21K0087. The record shows one award action and total obligated amounts of 3.60 billion dollars, or 3,602,762,910.01 in exact value.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of available award data and may not capture activity outside that window.

Agency ID
3600
PIID
36C10G21K0087
Type
Award
Total Obligated
3.60 billion
3,602,762,910.01
Actions
1
Average Action Value
3,602,762,910.01

Overview

Award number 36C10G21K0087 is associated with agency ID 3600 and shows a single recorded action in the analysis window. The total obligated amount is 3,602,762,910.01, with an average action value equal to the full obligation because only one action is recorded.

How to use this page

Use this page to review the award’s obligation level and action count in a compact format. The data is most useful for quick reference, comparative analysis, and linking the award number to broader procurement searches.

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 = '36C10G21K0087'
    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 3,602,762,910.01 3.60 billion 1

Insight

Obligations for PIID 36C10G21K0087 are fully concentrated in a single top agency: the Department of Veterans Affairs (agency ID 3600). Over the 10-year window, this agency accounts for $3.60 billion across 1 award, indicating complete agency-level concentration for this PIID. No distribution across additional agencies is evident in the provided rows.

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 = '36C10G21K0087'
        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 3,602,762,910.01 3.60 billion 1

Insight

Obligations for PIID 36C10G21K0087 are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3), accounting for $3.60 billion across 1 award over the 10-year window. This indicates complete vendor concentration for this award, with no evidence of distribution across multiple vendors in 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 = '36C10G21K0087'
    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 3,602,762,910.01 3.60 billion 1

Insight

Obligations for PIID 36C10G21K0087 over the 10-year window are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The award reflects a single obligation action totaling $3.60 billion across one award count, indicating no NAICS diversification within this record. This concentration suggests the award is entirely tied to a single health insurance carrier activity rather than a distributed mix of products 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 = '36C10G21K0087'
    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 3,602,762,910.01 3.60 billion 1

Insight

Obligations for PIID 36C10G21K0087 are fully concentrated in PSC G007, Social-Government Health Insurance Programs, with $3.60 billion obligated across 1 award. This indicates complete PSC concentration rather than a diversified product/service mix within the 10-year window. The single-line distribution suggests this award is dominated by one programmatic PSC classification.

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 = '36C10G21K0087'
    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
2020 3,602,762,910.01 3.60 billion 1

Insight

The 10-year annual trend for PIID 36C10G21K0087 shows obligation activity only in FY 2020, with $3.60 billion obligated across a single award action. This indicates a highly concentrated obligation pattern with no annual distribution visible in the provided window. Because only one year is represented, no multi-year trend or change in funding pace can be inferred from these rows.

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.