Award Number

Award Number 9700 / W58P0522C0016 Federal Contract Action Summary (Last 5 Years)

Federal procurement award page for award number W58P0522C0016 under agency ID 9700, showing last 5 years of obligation and action history.

This page summarizes award W58P0522C0016 for agency ID 9700 over the last 5 years. It shows 7 recorded actions with total obligated amounts of $4.04 billion and an average action value of $576.96 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and the readable obligated amount of $4.04 billion, with an exact total of 4038717531.97.

Agency ID
9700
PIID
W58P0522C0016
Type
Award
Total Obligated
4.04 billion
4,038,717,531.97
Actions
7
Average Action Value
576,959,647.42

Overview

Award W58P0522C0016 is associated with agency ID 9700 and includes 7 award actions in the last 5 years. Total obligated funding for the period is 4038717531.97, shown here in readable form as $4.04 billion. The average action value across the recorded actions is $576,959,647.42.

How to use this page

Use this page to review the obligation level and action count tied to award number W58P0522C0016. The figures support quick comparison across awards and provide a compact view of recent activity within the selected 5-year 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 = 'W58P0522C0016'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 4,038,717,531.97 4.04 billion 7

Insight

Within the 5-year window, obligations are fully concentrated in a single top agency: the DEPT OF THE ARMY. This agency accounts for $4.04 billion across 7 awards, indicating a highly concentrated award distribution for PIID W58P0522C0016. No other agency appears in the provided rows, so the observed obligation activity is limited to this one agency in the current extract.

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 = 'W58P0522C0016'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
PFIZER INC. 86491 4,038,717,531.97 4.04 billion 7

Insight

PFIZER INC. is the only listed vendor for PIID W58P0522C0016 in the 5-year window, indicating complete vendor concentration in the reported top-vendor results. The award is associated with 7 actions totaling $4.04 billion in obligated funds, showing that obligation activity is entirely tied to this single vendor 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0016'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 4,038,717,531.97 4.04 billion 7

Insight

Over the past 5 years, obligations under PIID W58P0522C0016 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for 7 awards totaling $4.04 billion, indicating a narrow award distribution within the observed period. The activity reflects a high degree of concentration in a single industry classification.

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 = 'W58P0522C0016'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 4,038,717,531.97 4.04 billion 7

Insight

Obligations under PIID W58P0522C0016 are fully concentrated in PSC 6505, Drugs and Biologicals, totaling $4.04 billion across 7 awards over the 5-year window. This indicates a highly focused obligation profile with no diversification across PSCs in the provided data. The limited award count relative to the obligation total suggests materially large individual awards within this product category.

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 = 'W58P0522C0016'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2022 4,040,249,850.00 4.04 billion 6
2023 -1,532,318.03 -1.53 million 1

Insight

Obligations for PIID W58P0522C0016 are highly concentrated in 2022, with 6 awards totaling 4.04 billion, indicating the bulk of activity occurred in that year. In 2023, activity fell sharply to a single award with -1.53 million in total obligated amount, reversing the prior year’s funding profile. Over the 5-year window provided, the obligation pattern is uneven and driven almost entirely by the 2022 spike.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.