Vehicle Number

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

Analyst summary for vehicle number in FPDS, covering award activity for PIID 75A50119D00035 over the last 10 years.

This page summarizes federal procurement activity for vehicle number under Agency ID 7505 and PIID 75A50119D00035 across the last 10 years. The record shows 11 award actions with total obligated funding of 41.63 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided obligated amount of 41,629,992.34 and the average action value of 3,784,544.76.

Agency ID
7505
PIID
75A50119D00035
Type
Vehicle
Total Obligated
41.63 million
41,629,992.34
Actions
11
Average Action Value
3,784,544.76

Overview

The analysis window covers the last 10 years and reflects 11 award actions tied to vehicle number for PIID 75A50119D00035. Total obligated funding is 41,629,992.34, with an average action value of 3,784,544.76.

How to use this page

Use this page to review the scale and cadence of obligation activity associated with this vehicle record. It is suited for basic FPDS research, award tracking, and comparison with other procurement records under Agency ID 7505.

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 = '75A50119D00035'
    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 41,629,992.34 41.63 million 10
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 0.00 0.00 1

Insight

Over the 10-year window, obligations for PIID 75A50119D00035 are concentrated in the OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE, which accounts for $41.63 million across 10 awards. By contrast, the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE is associated with 1 award but shows no obligated value. This indicates that obligated activity under the vehicle is materially centered in one agency entity, with minimal measurable distribution to the other listed entity.

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 = '75A50119D00035'
        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 = '75A50119D00035'
    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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 41,629,992.34 41.63 million 11

Insight

Obligations under vehicle 75A50119D00035 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with $41.63 million across 11 awards over the 10-year window. This indicates a highly focused procurement profile rather than a diversified set of industry codes. The average award value is approximately $3.79 million, suggesting repeated use within the same pharmaceutical manufacturing category.

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 = '75A50119D00035'
    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
6505 DRUGS AND BIOLOGICALS 41,629,992.34 41.63 million 11

Insight

The vehicle’s obligated spend is fully concentrated in PSC 6505, Drugs and Biologicals, with $41.63 million across 11 awards over the 10-year window. This indicates a narrow procurement profile tied to a single product/service category rather than a diversified mix. The award count suggests repeated use of the vehicle for this requirement type, supporting a sustained and focused funding pattern.

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 = '75A50119D00035'
    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
2019 0.00 0.00 2
2020 0.00 0.00 3
2021 17,815,000.00 17.82 million 2
2022 17,815,000.00 17.82 million 1
2023 5,999,992.34 6.00 million 2
2024 0.00 0.00 1

Insight

Obligations under PIID 75A50119D00035 are concentrated in 2021 and 2022, with $17.82 million obligated in each year and a combined 2021–2022 total of $35.63 million. Activity begins with zero obligated dollars in 2019 and 2020 despite multiple awards, then declines to $6.00 million in 2023 and returns to zero obligated in 2024. Award counts remain low throughout the period, indicating a small number of actions rather than broad annual distribution.

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.