Award Number

Award Number 3600 / 36C10G22K0036 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number 36C10G22K0036 under agency ID 3600, covering obligated activity in the last 5 years.

This page summarizes procurement activity for award number 36C10G22K0036. Over the last 5 years, the award shows 1 action with total obligated amounts of 2.11 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures on this page reflect the provided FPDS analysis window and may differ from later updates or source-system revisions.

Agency ID
3600
PIID
36C10G22K0036
Type
Award
Total Obligated
2.11 billion
2,110,778,408.75
Actions
1
Average Action Value
2,110,778,408.75

Overview

The award record for 36C10G22K0036 is associated with agency ID 3600 and shows one recorded action in the analysis window. Total obligated amount is 2,110,778,408.75, with the same amount reflected as the average action value because only one action is present.

How to use this page

Use this page to review the award-level obligation total and confirm the single-action profile for the selected period. It is suitable for basic procurement reference, trend filtering, and cross-checking against other FPDS records tied to agency ID 3600.

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 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 2,110,778,408.75 2.11 billion 1

Insight

Over the 5-year window, obligations for PIID 36C10G22K0036 are fully concentrated in a single agency: the Department of Veterans Affairs (Agency ID 3600). The award records one obligation total of $2.11 billion across one award count, indicating no distribution across other agencies within the provided data. This reflects complete agency concentration for this PIID in the observed period.

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 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 2,110,778,408.75 2.11 billion 1

Insight

Over the 5-year window, obligations for PIID 36C10G22K0036 are entirely concentrated in a single vendor: TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3). This vendor accounts for 1 award and $2.11 billion in total obligated value, indicating a highly concentrated award profile with no visible vendor distribution 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 = '36C10G22K0036'
    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 2,110,778,408.75 2.11 billion 1

Insight

Obligations under PIID 36C10G22K0036 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with a single award accounting for $2.11 billion over the 5-year window. This indicates no NAICS diversification within the reported award activity for this record. The distribution suggests all obligated funding is tied to one industry classification, making the award highly concentrated by NAICS.

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 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 2,110,778,408.75 2.11 billion 1

Insight

For PIID 36C10G22K0036 over the last 5 years, obligations are fully concentrated in PSC G007, Social- Government Health Insurance Programs, with $2.11 billion obligated across a single award record. This indicates a highly concentrated procurement profile with no observable PSC diversification within 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 5 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

Over the 5-year window, this award has activity recorded only in 2022, with $2.11 billion obligated across a single award action. Obligations are therefore fully concentrated in one year and one award, indicating no visible multi-year distribution or recurring annual funding pattern in the provided data. This concentration suggests the obligation profile for PIID 36C10G22K0036 is highly episodic rather than evenly spread across the period.

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.