This page summarizes the award-level activity for PIID 75A50120C00034 within agency ID 7505. Over the last 5 years, the award shows 19 actions and total obligations of $799,450,501.45.
Award Number
Award Number 7505 / 75A50120C00034 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number 75A50120C00034 under agency ID 7505, showing obligations and actions over the last 5 years.
Amounts are shown for the last 5 years and the average action value is $42,076,342.18.
Overview
The award record for PIID 75A50120C00034 captures activity reported under agency ID 7505. In the last 5 years, the award reached $799,450,501.45 in total obligated value across 19 award actions, for an average action value of $42,076,342.18.
How to use this page
Use this page to review award-level obligation totals and action count for 75A50120C00034 within the selected analysis window. The figures support basic trend review and comparison at the award identifier level without adding assumptions about scope or performance.
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 = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
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 |
|---|---|---|---|---|
| 7505 | OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE | 799,450,501.45 | 799.45 million | 14 |
| 7505 | ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE | 0.00 | 0.00 | 5 |
Insight
Obligations are highly concentrated in the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE, which accounts for $799.45 million across 14 awards in the 5-year window. The ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE appears in 5 awards but with no obligated dollars, indicating activity without recorded funding under this section. Overall, the award history is dominated by a single agency entry, with obligations not distributed across the other listed agency.
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 = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
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 |
|---|---|---|---|---|
| MODERNATX, INC. | 6RP85 | 799,450,501.45 | 799.45 million | 19 |
Insight
MODERNATX, INC. is the sole top vendor identified for this award, with $799.45 million obligated across 19 actions in the 5-year window. This indicates a highly concentrated obligation pattern tied to a single vendor rather than a broadly distributed vendor base. The volume of obligations and repeated award activity suggest sustained reliance on this contractor for the referenced PIID.
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 = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
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 |
|---|---|---|---|---|
| 325414 | BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING | 799,450,501.45 | 799.45 million | 19 |
Insight
Obligations on PIID 75A50120C00034 are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, with $799.45 million across 19 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award structure suggests sustained activity within a single biological products manufacturing category rather than a broad spread of obligations.
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 = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
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 |
|---|---|---|---|---|
| AN11 | HEALTH R&D SERVICES; HEALTH CARE SERVICES; BASIC RESEARCH | 799,450,501.45 | 799.45 million | 19 |
Insight
Obligations for PIID 75A50120C00034 over the 5-year window are fully concentrated in PSC AN11, which accounts for the entire reported $799.45 million across 19 awards. This indicates a narrow procurement profile centered on health R&D and health care services/basic research. The distribution suggests sustained, repeated obligation activity within a single PSC rather than diversification across multiple product or service categories.
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 = '7505' AND content__award__awardID__awardContractID__PIID = '75A50120C00034'
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 |
|---|---|---|---|
| 2021 | 443,210,913.06 | 443.21 million | 6 |
| 2022 | 308,495,451.00 | 308.50 million | 4 |
| 2023 | 47,744,137.39 | 47.74 million | 5 |
| 2024 | 0.00 | 0.00 | 2 |
| 2025 | 0.00 | 0.00 | 2 |
Insight
Obligations for PIID 75A50120C00034 were heavily concentrated in 2021 and 2022, totaling $751.71 million across 10 awards, with 2021 representing the peak at $443.21 million. Funding then declined sharply in 2023 to $47.74 million across 5 awards, indicating a substantial reduction in obligated value despite continued award activity. In 2024 and 2025, award counts remained at 2 each year, but obligated amounts were $0.00 in both years, suggesting activity without recorded obligations in the period.
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.