Award Number

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

Award record for PIID W58P0522C0017 under agency ID 9700, covering obligations and action history over the last 10 years.

This page summarizes procurement activity for award number W58P0522C0017 for agency ID 9700. The record shows 4 award actions and total obligations of 1.79 billion over the analysis window.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window of the last 10 years, with exact obligated value recorded as 1788399999.

Agency ID
9700
PIID
W58P0522C0017
Type
Award
Total Obligated
1.79 billion
1,788,399,999.00
Actions
4
Average Action Value
447,099,999.75

Overview

The award record for PIID W58P0522C0017 reflects 4 recorded actions within the last 10 years. Total obligated value is 1,788,399,999, with an average action value of 447,099,999.75. This provides a compact view of the award's obligation volume and action frequency.

How to use this page

Use this page to review the award's total obligation amount, action count, and average action value across the analysis window. It is suitable for comparing this award with other federal procurement records tied to agency ID 9700.

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 = 'W58P0522C0017'
    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,788,399,999.00 1.79 billion 4

Insight

All obligated funding in this 10-year window is concentrated in a single agency, the DEPT OF THE ARMY, which accounts for $1.79 billion across 4 awards. This indicates a highly concentrated obligation pattern with no evidence of broader interagency distribution for PIID W58P0522C0017. The limited award count suggests the funding is concentrated in a small number of transactions rather than spread across many awards.

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 = 'W58P0522C0017'
        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
MODERNA US, INC. 8PTM0 1,788,399,999.00 1.79 billion 4

Insight

Obligations for PIID W58P0522C0017 are fully concentrated with a single vendor, MODERNA US, INC. (CAGE 8PTM0), which accounts for $1.79 billion across 4 awards over the 10-year window. This indicates a highly concentrated award pattern with no distribution across additional vendors 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 = 'W58P0522C0017'
    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,788,399,999.00 1.79 billion 4

Insight

Obligations for PIID W58P0522C0017 are entirely concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with $1.79 billion across 4 awards over the 10-year window. This indicates a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data. The small award count relative to the obligated total suggests substantial value concentrated in a limited number of actions.

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 = 'W58P0522C0017'
    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,788,399,999.00 1.79 billion 4

Insight

Obligations for this award are fully concentrated in PSC 6505, Drugs and Biologicals, totaling $1.79 billion across 4 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The distribution suggests the award activity is dominated by a single supply category rather than a broad mix of products or services.

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 = 'W58P0522C0017'
    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
2022 1,788,399,999.00 1.79 billion 4

Insight

Over the 10-year window, obligation activity for award W58P0522C0017 is concentrated in FY 2022, with $1.79 billion obligated across 4 awards. This indicates a highly compressed distribution of spending within the period rather than a sustained annual pattern. The limited number of awards paired with the full obligated amount in a single year suggests significant year-specific concentration in execution.

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.