Award Number

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

Federal procurement analysis for award number 36C77019K0120 at Agency ID 3600 over the last 10 years.

This page summarizes award activity for PIID 36C77019K0120 within Agency ID 3600 across the last 10 years. The record shows one award action with total obligated funding of 1.76 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts shown use the provided readable and exact obligation values for the stated analysis window.

Agency ID
3600
PIID
36C77019K0120
Type
Award
Total Obligated
1.76 billion
1,756,511,355.56
Actions
1
Average Action Value
1,756,511,355.56

Overview

The award record for PIID 36C77019K0120 under Agency ID 3600 includes one action in the analysis window. Total obligated funding is 1,756,511,355.56, which rounds to 1.76 billion, and the average action value matches the total because only one action is reported.

How to use this page

Use this page to review the award-level obligation summary for the last 10 years. It is useful for identifying the scale of funding associated with this specific award number and for confirming that the dataset reflects a single reported action.

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 = '36C77019K0120'
    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,756,511,355.56 1.76 billion 1

Insight

For PIID 36C77019K0120 over the 10-year window, all recorded obligations are concentrated in a single agency: the Department of Veterans Affairs. The award totals $1.76 billion across one award record, indicating complete agency-level concentration with no distribution across other agencies in the provided data. This pattern suggests the award is wholly attributable to agency 3600 within the queried period.

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 = '36C77019K0120'
        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,756,511,355.56 1.76 billion 1

Insight

The top vendor is MCKESSON CORPORATION (CAGE 1MKG3), accounting for $1.76 billion in obligated value across 1 award in the 10-year window. This indicates complete concentration of obligated spending for PIID 36C77019K0120 in a single vendor relationship. No distribution across multiple vendors is evident 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 = '36C77019K0120'
    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,756,511,355.56 1.76 billion 1

Insight

Obligations for PIID 36C77019K0120 are entirely concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with $1.76 billion obligated across a single award over the 10-year window. This indicates a highly concentrated procurement profile with no diversification across additional NAICS codes in the provided data. The single-award distribution suggests the obligation activity is driven by one major action rather than multiple lower-value transactions.

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 = '36C77019K0120'
    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,756,511,355.56 1.76 billion 1

Insight

For PIID 36C77019K0120, obligations are entirely concentrated in PSC 6505, Drugs and Biologicals, with one award totaling $1.76 billion over the 10-year window. This indicates a highly concentrated spend profile with no observable distribution across additional PSCs in the provided results. The single-award concentration suggests this instrument is dominated by one product/service 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 = '36C77019K0120'
    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
2018 1,756,511,355.56 1.76 billion 1

Insight

For PIID 36C77019K0120, the 10-year annual trend is concentrated entirely in FY 2018, with one award action accounting for $1.76 billion in obligated amount. This indicates a highly concentrated obligation profile with no activity shown in other years within the provided window. The absence of a multi-year distribution limits year-over-year trend analysis and suggests the award’s obligation is tied to a single fiscal year.

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.