Vehicle Number

Vehicle Number 7505 / 75A50118D00016 Federal Contract Action Summary (Last 10 Years)

Federal procurement record for vehicle number 75A50118D00016 under agency ID 7505, covering the last 10 years.

This page summarizes award activity for vehicle number 75A50118D00016 over the last 10 years. The record shows 17 award actions with total obligated funding of 37.82 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals shown are based on the provided obligated amount of 37,822,619.77 and an average action value of 2,224,859.99.

Agency ID
7505
PIID
75A50118D00016
Type
Vehicle
Total Obligated
37.82 million
37,822,619.77
Actions
17
Average Action Value
2,224,859.99

Overview

For the last 10 years, vehicle number 75A50118D00016 shows 17 recorded award actions and a total obligated value of 37,822,619.77. The average action value is 2,224,859.99, indicating a relatively small number of higher-value actions rather than frequent low-value changes.

How to use this page

Use this page to review the procurement history associated with vehicle number 75A50118D00016 within agency ID 7505. The figures provide a concise summary of award volume and obligated dollars for the selected analysis window.

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 = '75A50118D00016'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 37,270,792.00 37.27 million 14
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 551,827.77 551.83 thousand 3

Insight

Over the 10-year window, obligations on this vehicle are highly concentrated in agency 7505. The OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE accounts for 37.27 million across 14 awards, while the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE records only 551.83 thousand across 3 awards. This indicates the vehicle’s activity is overwhelmingly driven by the former organization, with the latter contributing a comparatively minor share.

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 = '75A50118D00016'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 = '75A50118D00016'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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) 37,822,619.77 37.82 million 17

Insight

Within the 10-year window, obligations for vehicle PIID 75A50118D00016 are fully concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology). This NAICS accounts for $37.82 million across 17 awards, indicating a narrow and highly focused spending profile with no diversification across additional NAICS codes 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 = '75A50118D00016'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
AN11 R&D- MEDICAL: BIOMEDICAL (BASIC RESEARCH) 35,520,792.00 35.52 million 4
AN11 HEALTH R&D SERVICES; HEALTH CARE SERVICES; BASIC RESEARCH 2,301,827.77 2.30 million 13

Insight

Obligations under this vehicle are highly concentrated in PSC AN11, with 35.52 million across 4 awards and an additional 2.30 million across 13 awards in AN11-related descriptions. The larger obligation share is associated with relatively few awards, indicating a small number of higher-value actions drive most of the activity. The remaining awards are more numerous but materially smaller in value, suggesting a dispersed tail of lower-dollar obligations within the same PSC family.

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 = '75A50118D00016'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 14,000,000.00 14.00 million 2
2020 21,520,792.00 21.52 million 2
2021 800,000.00 800.00 thousand 3
2022 0.00 0.00 4
2023 950,000.00 950.00 thousand 4
2024 551,827.77 551.83 thousand 2

Insight

Obligations for PIID 75A50118D00016 are highly concentrated in the earlier years of the 10-year window, with $14.00 million in 2018 and a peak of $21.52 million in 2020, each across two awards. After 2020, annual obligated dollars drop sharply and remain at a much lower level, ranging from $0 in 2022 to $950.00 thousand in 2023 and $551.83 thousand in 2024, despite award counts holding between 2 and 4. This pattern indicates a clear transition from high-dollar activity to lower-value, more fragmented obligations in recent 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.