This page summarizes the federal award identified by PIID 36C10G20K0021 for agency 3600 over the last 10 years. The record shows one award action with total obligated funding of $1,981,031,881.25.
Award Number
Award Number 3600 / 36C10G20K0021 Federal Contract Action Summary (Last 10 Years)
Award 36C10G20K0021 for agency 3600 shows one recorded action in the last 10 years with total obligations of $1.98 billion.
Values reflect the provided analysis window and the reported total obligated amount and action count for this award.
Overview
The award record for PIID 36C10G20K0021 under agency 3600 includes one action in the last 10 years. Total obligated funding is $1,981,031,881.25, which matches an average action value of the same amount because only one action is recorded.
How to use this page
Use this page to review the obligation level and action count associated with award 36C10G20K0021. The data supports basic award-level analysis, including total obligations, activity count, and average action value for the selected period.
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 = '36C10G20K0021'
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,981,031,881.25 | 1.98 billion | 1 |
Insight
Within the 10-year window, all reported obligations for PIID 36C10G20K0021 are concentrated in a single top agency: the Department of Veterans Affairs (agency ID 3600). The award total is $1.98 billion across 1 award, indicating complete obligation concentration in one agency rather than a distributed award pattern. This reflects a highly concentrated obligation profile with no diversification across 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 = '36C10G20K0021'
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,981,031,881.25 | 1.98 billion | 1 |
Insight
Obligations for PIID 36C10G20K0021 over the 10-year window are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3). This vendor received 1 award totaling $1.98 billion, indicating complete award concentration with no visible distribution across additional 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 = '36C10G20K0021'
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) | 1,981,031,881.25 | 1.98 billion | 1 |
Insight
Obligations for PIID 36C10G20K0021 are fully concentrated in NAICS 621111, Offices of Physicians (Except Mental Health Specialists), with $1.98 billion obligated across a single award. This indicates complete NAICS concentration within the 10-year window and no distribution across additional industry codes in the provided data. The award activity is therefore highly focused in physician office services.
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 = '36C10G20K0021'
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 | 1,981,031,881.25 | 1.98 billion | 1 |
Insight
Obligations under PIID 36C10G20K0021 are fully concentrated in PSC Q999 (MEDICAL- OTHER), with $1.98 billion obligated across a single award. This indicates a highly concentrated procurement profile for the 10-year window, with no evidence in the provided data of distribution across multiple PSCs. The award count of one suggests the PSC total is driven by a single action rather than a broader mix of medical-related purchases.
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 = '36C10G20K0021'
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 | 1,981,031,881.25 | 1.98 billion | 1 |
Insight
In the 10-year window, this award has obligated $1.98 billion in a single year, 2020, across one recorded award action. Obligations are fully concentrated in that year, indicating no observable multi-year distribution within the provided data. This pattern suggests a one-time or highly concentrated funding profile rather than a recurring annual spend trend.
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.