Award Number

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

Award number 36C10G23K0051 for Agency ID 3600 shows one recorded action in the last 5 years with total obligations of $1.94 billion.

This page summarizes federal procurement activity for award 36C10G23K0051 under Agency ID 3600. The record shows one action with total obligated value of $1,943,190,123.15.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the last 5 years of available action data and use the provided obligated totals and action count.

Agency ID
3600
PIID
36C10G23K0051
Type
Award
Total Obligated
1.94 billion
1,943,190,123.15
Actions
1
Average Action Value
1,943,190,123.15

Overview

The award record for PIID 36C10G23K0051 is associated with Agency ID 3600 and contains one action in the analysis window. Total obligated value is $1,943,190,123.15, which is also the average action value because only one action is present. This page is intended to support basic award-level review of obligation volume and action count.

How to use this page

Use this page to identify the award’s reported obligation level and confirm that the available record set contains a single action. The summary is suitable for quick procurement research, internal review, and comparison against other awards within the same agency context. It does not add contract details beyond the provided identifiers and totals.

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 = '36C10G23K0051'
    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 1,943,190,123.15 1.94 billion 1

Insight

All recorded obligations in this 5-year window are concentrated in a single awarding agency: the Department of Veterans Affairs (Agency ID 3600). The agency accounts for $1.94 billion across 1 award, indicating full award-level concentration with no observed distribution across other agencies in the provided 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 = '36C10G23K0051'
        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 1,943,190,123.15 1.94 billion 1

Insight

Obligations are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3), which received $1.94 billion across 1 award over the 5-year window. This indicates extremely high vendor concentration for PIID 36C10G23K0051, with no evidence in the provided data of a broader distribution of obligated amounts across other 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 = '36C10G23K0051'
    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 1,943,190,123.15 1.94 billion 1

Insight

Obligations under PIID 36C10G23K0051 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with $1.94 billion obligated across a single award in the 5-year window. This indicates a highly concentrated spending pattern with no observed NAICS diversification in the provided data. The award’s obligation profile is entirely driven by one health insurance services category.

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 = '36C10G23K0051'
    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 1,943,190,123.15 1.94 billion 1

Insight

Obligations on this award are fully concentrated in PSC G007, Social-Government Health Insurance Programs, with $1.94 billion obligated across 1 award action. This indicates the award is narrowly scoped by product/service classification and not distributed across multiple PSCs within the 5-year window. The single-PSC concentration suggests the award is primarily associated with government health insurance program obligations.

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 = '36C10G23K0051'
    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
2023 1,943,190,123.15 1.94 billion 1

Insight

For PIID 36C10G23K0051, the 5-year annual trend contains only one reported award year, 2023, with $1.94 billion obligated across a single award. This indicates full concentration of obligated funding in one fiscal year and no observable year-over-year distribution within the provided window. The absence of additional years prevents assessment of multi-year growth or volatility.

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.