Award Number

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

FPDS award page for award number 36C10G22K0022 at Agency ID 3600, summarizing obligation data over the last 10 years.

This page presents procurement activity for award number 36C10G22K0022 under Agency ID 3600. The record shows one award action in the analysis window with total obligations of $4.83 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of available award data; total obligated exact is 4,826,052,272 and average action value equals the single recorded action.

Agency ID
3600
PIID
36C10G22K0022
Type
Award
Total Obligated
4.83 billion
4,826,052,272.00
Actions
1
Average Action Value
4,826,052,272.00

Overview

Award number 36C10G22K0022 is tied to Agency ID 3600 and shows a single action in the last 10 years. Total obligated amount is 4,826,052,272, which is also the average action value because only one action is recorded.

How to use this page

Use this page to review the obligation level associated with award number 36C10G22K0022 and to compare it with other records in the same agency context. The data supports quick screening of award size, action count, and overall funding level across the analysis window.

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 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 4,826,052,272.00 4.83 billion 1

Insight

Within the 10-year window, all obligated dollars for PIID 36C10G22K0022 are concentrated in a single top agency: the Department of Veterans Affairs (agency 3600). The full $4.83 billion is associated with one award record, indicating complete obligation concentration with no distribution across multiple agencies in the provided data. This pattern suggests the award is fully centralized within VA funding activity over the period examined.

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 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 4,826,052,272.00 4.83 billion 1

Insight

Obligations for PIID 36C10G22K0022 over the 10-year window are entirely concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3). The vendor accounts for $4.83 billion across 1 award, indicating complete award-level concentration in this query result. This distribution suggests the award relationship is highly centralized rather than dispersed across multiple vendors.

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 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 4,826,052,272.00 4.83 billion 1

Insight

Obligations are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with a single award accounting for $4.83 billion over the 10-year window. This indicates no NAICS diversification within the provided award record and suggests the action is wholly centered on health insurance carrier services. The presence of one award driving all reported obligation for this section reflects extreme concentration rather than a distributed spending profile.

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 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 4,826,052,272.00 4.83 billion 1

Insight

Award PIID 36C10G22K0022 for Agency 3600 is fully concentrated in PSC G007, Social-Government Health Insurance Programs, with one award accounting for $4.83 billion in obligated amount over the 10-year window. This indicates no observable PSC diversification within the provided data for this award.

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 10 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

In 2022, this award reflects a single reported obligation of 4.83 billion, indicating complete annual concentration in one year within the 10-year window. With only one award action recorded, there is no observable year-over-year distribution or trend pattern to assess. The obligation level suggests a highly concentrated funding event rather than a recurring annual spend profile.

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.