Award Number

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

Federal award record for award number 36C10G20K0022 under agency ID 3600, covering activity in the last 10 years.

This page summarizes obligation activity for award 36C10G20K0022. The record shows one award action with total obligated amount of 3.28 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other reports if filters or updates change.

Agency ID
3600
PIID
36C10G20K0022
Type
Award
Total Obligated
3.28 billion
3,276,610,906.36
Actions
1
Average Action Value
3,276,610,906.36

Overview

Award 36C10G20K0022 is associated with agency ID 3600 and shows one recorded action in the last 10 years. The total obligated amount is 3,276,610,906.36, with the same value as the average action amount because only one action is present. This page is intended to support review of the award-level obligation record.

How to use this page

Use this page to review the award number, obligation total, and action count together in one place. The data can support procurement analysis, record lookup, and comparison against other award records using the same agency and time 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 = '36C10G20K0022'
    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,276,610,906.36 3.28 billion 1

Insight

Over the 10-year window, all reported obligation for PIID 36C10G20K0022 is concentrated in a single top agency: the Department of Veterans Affairs (Agency ID 3600). The award is associated with one award record and total obligated amount of $3.28 billion, indicating complete agency concentration with no observed distribution across other agencies 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 = '36C10G20K0022'
        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,276,610,906.36 3.28 billion 1

Insight

Obligations under PIID 36C10G20K0022 are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3), which accounts for 3.28 billion in obligated value across 1 award over the 10-year window. This indicates a highly concentrated vendor profile with no evidence of diversification 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 = '36C10G20K0022'
    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
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 3,276,610,906.36 3.28 billion 1

Insight

The award is fully concentrated in NAICS 621111, Offices of Physicians (except Mental Health Specialists), with $3.28 billion obligated across 1 award over the 10-year window. This indicates an extremely concentrated spend profile with no observed distribution across additional NAICS codes in the provided data. The single-award structure suggests the obligation history for this PIID is tied entirely to one healthcare 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 = '36C10G20K0022'
    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
Q999 MEDICAL- OTHER 3,276,610,906.36 3.28 billion 1

Insight

Obligations are fully concentrated in PSC Q999, Medical- Other, with a single award accounting for the entire 10-year total of $3.28 billion. This indicates extreme product/service concentration and no diversification across PSCs within the referenced award. The award count of one suggests the observed obligation profile is driven entirely by a single contract vehicle rather than multiple procurement actions.

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 = '36C10G20K0022'
    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,276,610,906.36 3.28 billion 1

Insight

In the 10-year window, all recorded obligations for PIID 36C10G20K0022 are concentrated in a single fiscal year, 2020, with $3.28 billion obligated across one award action. This indicates an entirely non-distributed obligation pattern over the period, with no recorded activity in other years. The annual trend therefore reflects a one-time funding concentration rather than a sustained multi-year obligation 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.