Award Number

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

Federal procurement analysis for award number W58P0522C0017 under agency ID 9700, summarizing obligations and action activity over the last 5 years.

This page summarizes the award identified by PIID W58P0522C0017 for agency ID 9700 across the last 5 years. The award shows 4 actions and total obligated amount of 1.79 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation figures are based on the provided total obligated exact value of 1,788,399,999 and a 4-action history in the analysis window.

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 shows total obligations of 1,788,399,999 over the last 5 years. With 4 recorded actions, the average action value is 447,099,999.75. This page is limited to the provided award-level totals and action count for agency ID 9700.

How to use this page

Use this page to review the award-level obligation total and compare activity across the 4 actions in the analysis window. The figures support basic procurement review, trend checks, and cross-reference with other FPDS records for 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 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 1,788,399,999.00 1.79 billion 4

Insight

Over the past 5 years, obligations for PIID W58P0522C0017 are fully concentrated in one agency: DEPT OF THE ARMY (Agency ID 2100). The award totals 1.79 billion across 4 awards, indicating a highly concentrated funding pattern with no visible distribution across other agencies in the provided data. This concentration suggests the award has been managed exclusively within the Army over the observed 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 = '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 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
MODERNA US, INC. 8PTM0 1,788,399,999.00 1.79 billion 4

Insight

Over the 5-year window for award W58P0522C0017, obligations are fully concentrated with a single vendor, MODERNA US, INC. (CAGE 8PTM0). This vendor received 4 awards totaling $1.79 billion, indicating a highly concentrated obligation pattern with no other vendors represented in the provided rows.

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

Insight

Obligations on PIID W58P0522C0017 over the 5-year window are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for $1.79 billion across 4 awards, indicating a narrow and highly concentrated award profile rather than a diversified mix of industries. The limited distribution suggests the contract activity is tied to a single industrial category.

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

Insight

Award W58P0522C0017 is fully concentrated in PSC 6505, Drugs and Biologicals, with $1.79 billion obligated across 4 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across PSC categories in the provided data. The limited award count relative to the obligation level suggests substantial value concentration within a single product service code.

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 5 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

For PIID W58P0522C0017, the 5-year annual trend data provided includes obligations only in FY 2022. Total obligated amount was $1.79 billion across 4 awards, indicating a highly concentrated obligation profile in a single year. No additional years are reflected in the provided rows, so a multi-year trend cannot be assessed from this extract.

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.