Vehicle Number

Vehicle Number 7505 / 75A50118D00036 Federal Contract Action Summary (Last 5 Years)

Federal procurement summary for vehicle number 75A50118D00036 under agency 7505, showing obligations and award actions over the last 5 years.

This page presents procurement activity for vehicle number 75A50118D00036 for agency 7505 across the last 5 years. The record shows 17 award actions with total obligated funding of 91.61 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided readable and exact obligated amounts for the analysis window and may reflect rounding in the displayed value.

Agency ID
7505
PIID
75A50118D00036
Type
Vehicle
Total Obligated
91.61 million
91,607,337.30
Actions
17
Average Action Value
5,388,666.90

Overview

The procurement record for PIID 75A50118D00036 shows 17 award actions in the last 5 years. Total obligated funding is 91,607,337.3, with an average action value of 5,388,666.9.

How to use this page

Use this page to review the scale of obligations tied to this vehicle and to compare award activity across the analysis window. The figures provide a concise view of total obligated value and the average size of each action.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 60,296,095.30 60.30 million 10
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 31,311,242.00 31.31 million 7

Insight

Obligations under this vehicle are concentrated within agency ID 7505, with the Administration for Strategic Preparedness and Response accounting for $60.30 million across 10 awards over the past 5 years. The Office of Assistant Secretary for Preparedness and Response also represents a substantial share, with $31.31 million across 7 awards. Combined, these two organizational units account for the full activity reflected in the provided rows, indicating procurement is concentrated within a limited set of components.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541714 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) 91,607,337.30 91.61 million 17

Insight

Obligations under PIID 75A50118D00036 are fully concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology), over the 5-year window. This NAICS accounts for the entire $91.61 million obligated and all 17 awards, indicating a single-industry award profile with no observed diversification in the provided data.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 75,323,190.30 75.32 million 16
6505 DRUGS AND BIOLOGICALS 16,284,147.00 16.28 million 1

Insight

Over the 5-year window, obligations under this vehicle are heavily concentrated in PSC AN13, which accounts for $75.32 million across 16 awards. PSC 6505 represents a much smaller share of activity, with $16.28 million obligated on a single award. This distribution indicates the vehicle is primarily used for health R&D and related health care services, with limited use for drugs and biologicals.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 19,284,147.00 19.28 million 2
2022 10,827,095.00 10.83 million 2
2023 1,200,000.00 1.20 million 4
2024 34,538,392.30 34.54 million 4
2025 25,757,703.00 25.76 million 5

Insight

Obligations under PIID 75A50118D00036 were uneven across the 5-year window, with a low point in 2023 at $1.20 million followed by a sharp rebound in 2024 to $34.54 million. The largest annual obligations occurred in 2024 and 2025, which together accounted for the majority of the period’s funding, indicating a recent concentration of activity. Award counts also increased from 2 awards in 2021–2022 to 4 in 2023–2024 and 5 in 2025, suggesting broader distribution of obligations in the later years.

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.