Vehicle Number

Vehicle Number 7523 / 75D30125D20471 Federal Contract Action Summary (Last 5 Years)

Federal procurement profile for vehicle number 75D30125D20471 covering the last 5 years of award activity for agency 7523.

This page summarizes obligation and award activity for vehicle number 75D30125D20471 under agency 7523 during the last 5 years. The record shows 3 award actions with total obligated funding of 60.58 million and an average action value of 20,192,707.3.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts are based on the provided exact total obligated value of 60,578,121.9 and should be interpreted as award-level obligation data for the stated analysis window.

Agency ID
7523
PIID
75D30125D20471
Type
Vehicle
Total Obligated
60.58 million
60,578,121.90
Actions
3
Average Action Value
20,192,707.30

Overview

The vehicle number 75D30125D20471 record reflects a limited set of award activity in the last 5 years, with 3 total actions. Total obligated funding equals 60,578,121.9, and the average action value is 20,192,707.3. This provides a compact view of how obligation volume is distributed across the recorded actions.

How to use this page

Use this page to review the scale and frequency of award activity associated with vehicle number 75D30125D20471. The figures support basic procurement tracking by showing total obligated dollars, action count, and average action size within the selected period.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30125D20471'
    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
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 60,578,121.90 60.58 million 3

Insight

Over the 5-year window, obligations under PIID 75D30125D20471 are fully concentrated within the Centers for Disease Control and Prevention, which accounts for the entire reported total of $60.58 million across 3 awards. This indicates a single-agency funding profile with no observed distribution across additional top agencies in the provided data. The low award count relative to the obligated amount suggests a limited number of higher-value actions rather than broad dispersal.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30125D20471'
        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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30125D20471'
    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 60,578,121.90 60.58 million 3

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The agency recorded 3 awards totaling $60.58 million, indicating a narrow industry distribution and strong dependence on a single NAICS category for this PIID. This concentration suggests limited diversification of obligated activity 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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30125D20471'
    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 60,578,121.90 60.58 million 3

Insight

For PIID 75D30125D20471 over the 5-year window, obligations are entirely concentrated in PSC 6505, Drugs and Biologicals, with $60.58 million across 3 awards. This indicates a narrow product focus and limited PSC distribution within the vehicle. The small award count relative to the obligated value suggests a concentrated funding pattern rather than broad transactional dispersion.

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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30125D20471'
    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
2025 60,578,121.90 60.58 million 3

Insight

For PIID 75D30125D20471 under agency 7523, the 5-year annual trend dataset contains activity only in 2025. Obligations in 2025 total $60.58 million across 3 awards, indicating a concentrated obligation pattern in a single year rather than a distributed multi-year profile. With no additional years reported in the provided window, trend interpretation is limited to this one-year concentration.

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.