Vehicle Number

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

Procurement overview for vehicle number 75A50118D00016 under agency 7505, covering obligations in the last five years.

This page summarizes federal award activity for vehicle number 75A50118D00016 associated with agency ID 7505. Over the last 5 years, the record shows 13 award actions totaling $2.30 million in obligated funding.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and obligated amounts; the exact total obligated is $2,301,827.77.

Agency ID
7505
PIID
75A50118D00016
Type
Vehicle
Total Obligated
2.30 million
2,301,827.77
Actions
13
Average Action Value
177,063.67

Overview

The record for vehicle number 75A50118D00016 shows 13 award actions across the last 5 years, with total obligated funding of $2,301,827.77. The average action value is $177,063.67, based on the provided action count and obligation total. This page is limited to the supplied procurement identifiers and funding figures.

How to use this page

Use this page to review a compact summary of obligation activity tied to PIID 75A50118D00016 and agency ID 7505. The figures support quick screening of award volume and funding level within the stated 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 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 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 1,750,000.00 1.75 million 10
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 551,827.77 551.83 thousand 3

Insight

Obligations under PIID 75A50118D00016 are concentrated in Agency ID 7505 over the 5-year window, with 1.75 million across 10 awards attributed to the Office of Assistant Secretary for Preparedness and Response. A smaller share, 551.83 thousand across 3 awards, is attributed to the Administration for Strategic Preparedness and Response. Overall, the vehicle’s obligations are weighted toward the former organization, with limited distribution across the two reported agency names.

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 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 = '75A50118D00016'
    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) 2,301,827.77 2.30 million 13

Insight

Obligations under this vehicle are entirely concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology), which accounts for the full $2.30 million recorded over the 5-year window. The activity is distributed across 13 awards, indicating repeated use of the vehicle within a single industry category rather than broader NAICS diversification.

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 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
AN11 HEALTH R&D SERVICES; HEALTH CARE SERVICES; BASIC RESEARCH 2,301,827.77 2.30 million 13

Insight

Obligations under vehicle 75A50118D00016 are fully concentrated in PSC AN11, with $2.30 million across 13 awards over the 5-year window. This indicates a narrow scope of use, centered on health R&D services, health care services, and basic research. The award pattern suggests repeated but relatively modest transactions within a single PSC category rather than a diversified services mix.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 uneven across the 5-year window, with funding concentrated in 2021, 2023, and 2024. Activity is highest in 2023 at $950.0 thousand across four awards, followed by $800.0 thousand in 2021 across three awards and $551.8 thousand in 2024 across two awards. 2022 records four awards with no obligated dollars, indicating award activity without reported obligation in that year.

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.