Award Number

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

Federal award record for award number W58P0522C0001 under agency ID 9700, showing obligations and actions over the last 10 years.

This page summarizes the procurement history for award number W58P0522C0001 for agency ID 9700. Over the last 10 years, the award has 8 actions and total obligated amounts of 12.55 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and reflect a readable total obligated amount of 12.55 billion and an exact total of 12549999847.5.

Agency ID
9700
PIID
W58P0522C0001
Type
Award
Total Obligated
12.55 billion
12,549,999,847.50
Actions
8
Average Action Value
1,568,749,980.94

Overview

The award record for W58P0522C0001 covers 8 reported actions in the last 10 years. The total obligated amount is 12.55 billion, with an exact value of 12549999847.5 and an average action value of 1568749980.94. These figures provide a concise summary of activity at the award level for agency ID 9700.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for W58P0522C0001. It is suitable for quick reference when comparing this award against other records within the same 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 = 'W58P0522C0001'
    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 12,549,999,847.50 12.55 billion 8

Insight

Over the 10-year window for award PIID W58P0522C0001, obligation activity is entirely concentrated in a single agency: the Department of the Army. The Army accounts for $12.55 billion across 8 awards, indicating highly concentrated award distribution with no evidence of diversification 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'W58P0522C0001'
        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
PFIZER INC. 86491 12,549,999,847.50 12.55 billion 8

Insight

PFIZER INC. is the sole top vendor identified for this award over the 10-year window, accounting for $12.55 billion across 8 awards. This indicates a highly concentrated obligation pattern with all identified top-vendor activity attributable to a single contractor. The distribution suggests this award has been heavily reliant on one vendor rather than spread across multiple suppliers.

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 = 'W58P0522C0001'
    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 12,549,999,847.50 12.55 billion 8

Insight

Over the 10-year window, obligations for this award are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The single reported NAICS accounts for $12.55 billion across 8 awards, indicating a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. This concentration suggests the award activity is consistently aligned to pharmaceutical preparation manufacturing requirements.

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 = 'W58P0522C0001'
    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 12,549,999,847.50 12.55 billion 8

Insight

Award obligations for PIID W58P0522C0001 are fully concentrated in PSC 6505, Drugs and Biologicals, with $12.55 billion across 8 awards over the 10-year window. This indicates a highly concentrated procurement profile with limited PSC diversity and a small number of award actions driving all reported obligations in this section.

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 = 'W58P0522C0001'
    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 5,295,000,000.00 5.29 billion 1
2022 7,254,999,847.50 7.25 billion 5
2023 0.00 0.00 2

Insight

Obligations for PIID W58P0522C0001 are concentrated in 2021 and 2022, with 5.29 billion in 2021 and 7.25 billion in 2022. Award activity increased from 1 award in 2021 to 5 awards in 2022, then declined to 2 awards in 2023. Despite continued award activity in 2023, obligated dollars fell to zero, indicating a break in funding concentration after 2022.

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.