This page summarizes the federal award identified by PIID W15QKN21C0012 for Agency ID 9700. Over the last 10 years, the award shows 29 actions and $11.11 billion in total obligated dollars.
Award Number
Award Number 9700 / W15QKN21C0012 Federal Contract Action Summary (Last 10 Years)
Award record for PIID W15QKN21C0012 under Agency ID 9700, covering the last 10 years of reported actions and obligations.
Total obligated is shown as $11,110,134,065.68, with an average action value of $383,108,071.23 across 29 actions.
Overview
This award record covers PIID W15QKN21C0012 for Agency ID 9700 within the last 10 years. The reported total obligated amount is $11,110,134,065.68 across 29 award actions, which yields an average action value of $383,108,071.23.
How to use this page
Use this page to review the award-level obligation history and action count tied to PIID W15QKN21C0012. The figures presented here support basic procurement analysis of scale and action frequency without adding information beyond the reported award data.
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 = 'W15QKN21C0012'
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 | 11,110,134,065.68 | 11.11 billion | 29 |
Insight
Within the 10-year window for award PIID W15QKN21C0012, obligations are concentrated entirely with the Department of the Army. The Army accounts for 29 awards totaling $11.11 billion, indicating a highly concentrated funding profile with no other agencies represented in this section.
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 = 'W15QKN21C0012'
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 | 11,110,134,065.68 | 11.11 billion | 29 |
Insight
PFIZER INC. is the only vendor listed in this 10-year top-vendor view for award PIID W15QKN21C0012 under agency 9700, indicating complete concentration of obligated dollars with a single supplier in the provided rows. The vendor accounts for $11.11 billion across 29 awards, which suggests sustained, repeated obligation activity rather than a one-time transaction. This distribution indicates a highly concentrated vendor profile for the scope reflected here.
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 = 'W15QKN21C0012'
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 |
|---|---|---|---|---|
| 325414 | BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING | 11,110,134,065.68 | 11.11 billion | 29 |
Insight
Obligations for award W15QKN21C0012 are fully concentrated in NAICS 325414, Biological Product (except Diagnostic) Manufacturing. Over the 10-year window, this category accounts for $11.11 billion across 29 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards is modest relative to the obligation total, suggesting large-dollar awards within a single industrial 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 = 'W15QKN21C0012'
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 | 11,110,134,065.68 | 11.11 billion | 29 |
Insight
The award is fully concentrated in PSC 6505, Drugs and Biologicals, with $11.11 billion obligated across 29 awards over the 10-year window. This indicates a highly focused procurement profile centered on pharmaceutical and biologic supplies rather than a diversified mix of products or services. The award count suggests repeated activity in the same PSC category, consistent with sustained demand in this mission area.
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 = 'W15QKN21C0012'
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 |
|---|---|---|---|
| 2020 | 2,011,282,500.00 | 2.01 billion | 1 |
| 2021 | 9,114,679,000.00 | 9.11 billion | 19 |
| 2022 | 18,007,444.50 | 18.01 million | 6 |
| 2023 | -33,834,848.82 | -33.83 million | 2 |
| 2025 | -30.00 | -30.00 | 1 |
Insight
Obligations on PIID W15QKN21C0012 are highly concentrated in 2020 and 2021, which account for the vast majority of the 10-year activity at 2.01 billion across 1 award and 9.11 billion across 19 awards, respectively. Activity falls sharply in 2022 to 18.01 million across 6 awards, followed by negative obligated amounts in 2023 (-33.83 million across 2 awards) and 2025 (-30 across 1 award), indicating subsequent downward adjustments or deobligations rather than continued positive funding growth. Overall, the distribution is heavily front-loaded, with little positive obligation activity after 2021.
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.