This award page summarizes the procurement history tied to award number 36C10G20K0020 for agency ID 3600. The analysis window covers the last 10 years and reflects a single action with total obligations of 1,908,528,940.11.
Award Number
Award Number 3600 / 36C10G20K0020 Federal Contract Action Summary (Last 10 Years)
Award record for PIID 36C10G20K0020 under agency ID 3600, showing one recorded action with 1.91 billion obligated over the last 10 years.
Obligation figures are shown as both a readable total and an exact value, and the average action value matches the single recorded action.
Overview
This award record is centered on PIID 36C10G20K0020 and agency ID 3600. Over the last 10 years, the page shows one award action with total obligations of 1,908,528,940.11. The average action value is the same as the total because the record contains a single action.
How to use this page
Use this page to review the award identifier, obligation total, and action count in one place. The data supports basic award-level analysis without implying additional actions or activity beyond the single recorded entry.
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 = '36C10G20K0020'
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,908,528,940.11 | 1.91 billion | 1 |
Insight
Over the 10-year window, obligations for PIID 36C10G20K0020 are fully concentrated in a single agency: the Department of Veterans Affairs. The award record reflects one award action totaling $1.91 billion, indicating no distribution across multiple agencies within the provided data. This suggests the award is entirely agency-specific for the period reviewed.
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 = '36C10G20K0020'
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,908,528,940.11 | 1.91 billion | 1 |
Insight
Obligations for PIID 36C10G20K0020 are fully concentrated with a single vendor, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3). Across the 10-year window, this vendor accounts for $1.91 billion in obligated value across one award action, indicating no distribution across multiple top vendors for this instrument. This concentration suggests the award is highly centralized with a single prime recipient dominating the obligation profile.
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 = '36C10G20K0020'
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,908,528,940.11 | 1.91 billion | 1 |
Insight
Obligations for PIID 36C10G20K0020 are fully concentrated in NAICS 621111, Offices of Physicians (except Mental Health Specialists), with $1.91 billion obligated across a single award over the 10-year window. This indicates no NAICS diversification within the provided data and suggests the award activity is entirely aligned to physician office services. The absence of additional NAICS categories limits any assessment of distribution across industries.
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 = '36C10G20K0020'
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,908,528,940.11 | 1.91 billion | 1 |
Insight
Obligations for this award are fully concentrated in PSC Q999, Medical- Other, with $1.91 billion obligated across a single award record. This indicates a highly concentrated product/service profile with no diversification across PSCs in the 10-year window. The single-record concentration suggests the award’s obligated activity is entirely associated with this PSC classification.
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 = '36C10G20K0020'
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,908,528,940.11 | 1.91 billion | 1 |
Insight
Over the 10-year window, this award shows obligation activity only in 2020, with $1.91 billion obligated across a single award record. The entire observed value is concentrated in one year and one award count, indicating no visible distribution across multiple years in the provided data. This pattern suggests a highly concentrated obligation profile for the period reviewed.
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.