This page presents the federal award record for PIID 36C77020K0173 and summarizes obligated amounts across the last 10 years. The award shows 1 action with total obligated funding of 1.68 billion.
Award Number
Award Number 3600 / 36C77020K0173 Federal Contract Action Summary (Last 10 Years)
Award-level procurement summary for PIID 36C77020K0173 under agency ID 3600, covering the last 10 years.
All values are based on the provided award-level inputs; total obligated exact is 1676862811.11 and average action value is 1676862811.11.
Overview
The award record for PIID 36C77020K0173 shows a single action in the analysis window. Total obligated funding is 1,676,862,811.11, with an average action value equal to the full obligated total because only one action is included. This supports a straightforward reading of the award at the transaction level.
How to use this page
Use this page to review the award's obligated funding history for agency ID 3600 over the last 10 years. Because the record contains one action, the award total and action average are identical and should be interpreted as a single recorded obligation rather than a multi-action pattern.
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 = '36C77020K0173'
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,676,862,811.11 | 1.68 billion | 1 |
Insight
Within the 10-year window for PIID 36C77020K0173, all recorded obligated value is concentrated in a single agency: the Department of Veterans Affairs. The award total is $1.68 billion across 1 award, indicating complete agency concentration with no 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 = '36C77020K0173'
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 |
|---|---|---|---|---|
| MCKESSON CORPORATION | 1MKG3 | 1,676,862,811.11 | 1.68 billion | 1 |
Insight
McKesson Corporation is the sole vendor listed for PIID 36C77020K0173 over the 10-year window, with one award totaling $1.68 billion. This indicates complete vendor concentration for the observed award record, with no evidence of distribution across multiple vendors in the provided data. The obligation profile is fully attributable to a single contractor, which may warrant closer review of dependency and sourcing continuity.
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 = '36C77020K0173'
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 |
|---|---|---|---|---|
| 325412 | PHARMACEUTICAL PREPARATION MANUFACTURING | 1,676,862,811.11 | 1.68 billion | 1 |
Insight
Award activity for PIID 36C77020K0173 is entirely concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, over the 10-year window. The single recorded award in this category accounts for $1.68 billion in obligated funding, indicating a fully concentrated NAICS profile with no distribution across additional NAICS codes in the provided data. This suggests the award is narrowly aligned to pharmaceutical preparation manufacturing work.
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 = '36C77020K0173'
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 |
|---|---|---|---|---|
| 6505 | DRUGS AND BIOLOGICALS | 1,676,862,811.11 | 1.68 billion | 1 |
Insight
For award PIID 36C77020K0173 at Agency 3600 over the 10-year window, obligations are fully concentrated in PSC 6505, Drugs and Biologicals. A single award accounts for $1.68 billion across 1 action, indicating an entirely concentrated PSC distribution for this record. This level of concentration suggests the award is tied to one dominant supply category rather than a diversified procurement mix.
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 = '36C77020K0173'
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,676,862,811.11 | 1.68 billion | 1 |
Insight
In the 10-year window, this award is concentrated entirely in FY 2020, with one recorded action obligating $1.68 billion. The available data indicate no distribution across other years in the period provided. This pattern suggests a single-year obligation profile rather than a multi-year 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.