Vehicle Number

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

Federal procurement profile for vehicle number 75A50119D00035 at agency 7505, covering the last 5 years of award activity.

This page summarizes obligation and action history for vehicle number 75A50119D00035. The record shows 6 award actions and total obligated dollars of 41.63 million over the analysis window.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided readable amount of 41.63 million and the exact obligated value of 41,629,992.34 across 6 actions.

Agency ID
7505
PIID
75A50119D00035
Type
Vehicle
Total Obligated
41.63 million
41,629,992.34
Actions
6
Average Action Value
6,938,332.06

Overview

The award record for vehicle number 75A50119D00035 includes 6 award actions within the last 5 years. Total obligations equal 41,629,992.34, with an average action value of 6,938,332.06. This profile is limited to the supplied FPDS summary fields and does not add vehicle details beyond the identifier and obligation totals.

How to use this page

Use this page to review the scale and frequency of procurement activity tied to vehicle number 75A50119D00035. The combination of total obligated dollars and action count provides a compact view of award concentration over the analysis window. For deeper analysis, compare this record with other vehicle entries under agency 7505 using the same time frame and action-based measures.

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 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 41,629,992.34 41.63 million 5
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 0.00 0.00 1

Insight

Over the 5-year window, obligations for this vehicle are concentrated in agency ID 7505, with the Office of Assistant Secretary for Preparedness and Response accounting for $41.63 million across 5 awards. The Administration for Strategic Preparedness and Response shows 1 award with no obligated dollars. This indicates the vehicle’s activity is heavily centered in one component, with limited obligation distribution beyond that office.

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

Insight

Over the 5-year window, obligations under vehicle PIID 75A50119D00035 were concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for the full reported obligation total of $41.63 million across 6 awards, indicating a narrow spending distribution within the vehicle.

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 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
6505 DRUGS AND BIOLOGICALS 41,629,992.34 41.63 million 6

Insight

Obligations under this vehicle are fully concentrated in PSC 6505, Drugs and Biologicals, totaling $41.63 million across 6 awards over the 5-year window. This indicates a narrow product focus with no observed diversification across other PSCs in the provided data. The award pattern suggests recurring procurement activity in the pharmaceuticals/biologicals category rather than a broad mix of supplies or services.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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, accounting for the vast majority of activity in the 5-year window. Funding declined materially in 2023 to $6.00 million, and 2024 recorded no obligated dollars despite one award action. The pattern indicates a sharp reduction in annual funding after the initial peak period, with award activity continuing but at lower or zero obligation levels.

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.