Award Number

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

This award page summarizes FPDS activity for award number 36C10G23K0051 under agency ID 3600 over the last 10 years.

The award shows one recorded action with total obligated funding of $1.94 billion. The average action value equals the full obligated amount because the record contains a single action.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided FPDS analysis window of the last 10 years and may appear rounded in readable form.

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

This award record contains a single action across the last 10 years, with total obligated funding of 1,943,190,123.15. The full obligated amount is concentrated in one action, so the average action value matches the total.

How to use this page

Use this page to review the award number, total obligated amount, and action count associated with agency ID 3600. It is suitable for quick reference, trend screening within the analysis window, and linking the award identifier to related procurement records.

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 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 1,943,190,123.15 1.94 billion 1

Insight

For PIID 36C10G23K0051 over the 10-year window, obligations are fully concentrated within a single agency: the Department of Veterans Affairs (agency ID 3600). The award total is $1.94 billion across 1 award record, indicating complete agency-level concentration with no distribution across additional agencies in the provided data. This pattern suggests the award is not diversified across the federal customer base.

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 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 1,943,190,123.15 1.94 billion 1

Insight

Obligations for PIID 36C10G23K0051 are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3), which accounts for $1.94 billion across one award. This indicates complete vendor concentration in the 10-year window, with no evidence of distribution across additional top 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 = '36C10G23K0051'
    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 1,943,190,123.15 1.94 billion 1

Insight

Obligations for PIID 36C10G23K0051 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. Over the 10-year window, a single award accounts for $1.94 billion across one reported award record, indicating no NAICS diversification within the provided data. This pattern suggests the award activity is entirely centered in one industry classification.

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 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 1,943,190,123.15 1.94 billion 1

Insight

Obligations for PIID 36C10G23K0051 are fully concentrated in PSC G007, Social-Government Health Insurance Programs, with $1.94 billion obligated across a single award over the 10-year window. This indicates a highly concentrated PSC profile with no visible distribution across additional product or service categories in the provided data. The award’s obligation pattern is therefore dominated by one health insurance-related PSC.

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 10 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 10-year annual trend shows all reported obligation activity concentrated in FY 2023, with one award totaling $1.94 billion. No obligations are reflected in other years within the provided window, indicating a highly concentrated funding pattern rather than a distributed multi-year trend. This suggests the award’s obligation profile is driven by a single-year action.

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.