Award Number

Award Number 9700 / W58P0522C0002 Federal Contract Action Summary (Last 10 Years)

Federal award record for award number W58P0522C0002 under agency ID 9700, covering the last 10 years of obligation activity.

This page summarizes the procurement history tied to PIID W58P0522C0002, including obligation totals and action activity across the analysis window. The award shows 7 actions and $1.60 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided 10-year analysis window and a readable obligated amount of $1.60 billion, with an exact total of 1597461996.

Agency ID
9700
PIID
W58P0522C0002
Type
Award
Total Obligated
1.60 billion
1,597,461,996.00
Actions
7
Average Action Value
228,208,856.57

Overview

The award record for W58P0522C0002 shows 7 recorded actions over the last 10 years. Total obligated value is 1,597,461,996, with an average action value of 228,208,856.57. This provides a compact view of obligation activity tied to agency ID 9700.

How to use this page

Use this page to review the award-level obligation pattern, action count, and overall scale of activity for PIID W58P0522C0002. It is useful for comparing this award against other records within the same agency ID and analysis 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0002'
    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
2100 DEPT OF THE ARMY 1,597,461,996.00 1.60 billion 7

Insight

All reported obligation within the 10-year window is concentrated in a single top agency: the Department of the Army. That agency accounts for $1.60 billion across 7 awards, indicating a highly concentrated award distribution for PIID W58P0522C0002. No other agencies are represented 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0002'
        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
GLAXOSMITHKLINE LLC 667E9 1,597,461,996.00 1.60 billion 7

Insight

GLAXOSMITHKLINE LLC is the sole top vendor reported for PIID W58P0522C0002 over the 10-year window, accounting for $1.60 billion across 7 awards. Obligations are fully concentrated with this vendor in the provided data, indicating a highly concentrated award distribution for this instrument. The average obligation per award is substantial, suggesting repeated and significant funding activity with the same recipient.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0002'
    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,597,461,996.00 1.60 billion 7

Insight

Over the 10-year window, obligations for award W58P0522C0002 are entirely concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This category accounts for $1.60 billion across 7 awards, indicating a highly concentrated obligation profile with no diversification across other NAICS codes in the provided data.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0002'
    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,597,461,996.00 1.60 billion 7

Insight

Obligations under PIID W58P0522C0002 are fully concentrated in PSC 6505, Drugs and Biologicals, with $1.60 billion across 7 awards over the 10-year window. This indicates a highly concentrated product mix with no diversification across other PSCs in the provided data. The small award count relative to the obligation total suggests each award carried substantial value.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0002'
    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
2021 651,094,500.00 651.09 million 1
2022 945,807,496.00 945.81 million 5
2023 560,000.00 560.00 thousand 1

Insight

Obligations under PIID W58P0522C0002 are highly concentrated in 2021 and 2022, with 651.09 million and 945.81 million obligated respectively. The 2022 amount is the peak in the provided period and is associated with five awards, indicating the highest award activity in the window. In 2023, obligations drop sharply to 560.00 thousand on a single award, suggesting the recent period is materially lower than the prior two years.

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.