Vehicle Number

Vehicle Number 7523 / 75D30123D16109 Federal Contract Action Summary (Last 10 Years)

Procurement analysis for vehicle number 75D30123D16109 under agency ID 7523 over the last 10 years, showing $811.33 million in total obligations across 9 award actions.

This page summarizes federal procurement activity for vehicle number 75D30123D16109 within agency ID 7523 during the last 10 years. The record shows $811,332,890.50 in total obligated value across 9 award actions, with an average action value of $90,148,098.94.

Generated at 03/20/2026

Analysis period: Last 10 years

All amounts reflect the provided readable and exact obligated totals for the specified analysis window and PIID.

Agency ID
7523
PIID
75D30123D16109
Type
Vehicle
Total Obligated
811.33 million
811,332,890.50
Actions
9
Average Action Value
90,148,098.94

Overview

The procurement record for vehicle number 75D30123D16109 in agency ID 7523 covers 9 award actions over the last 10 years. Total obligated value is $811,332,890.50, which is the same as $811.33 million when rounded to two decimals. The average action value is $90,148,098.94.

How to use this page

Use this page to review the scale and frequency of obligations tied to PIID 75D30123D16109. The figures support basic trend review and comparison against other FPDS vehicle records for the same agency and period. The page does not add details beyond the provided obligation totals, action count, and average action value.

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 = '75D30123D16109'
    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
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 811,332,890.50 811.33 million 9

Insight

Over the 10-year window, all reported obligations for PIID 75D30123D16109 are concentrated within a single agency: the Centers for Disease Control and Prevention (Agency ID 7523). CDC accounts for $811.33 million across 9 awards, indicating exclusive agency concentration for this vehicle in the provided data. This pattern suggests the instrument has been used solely within one agency rather than distributed across multiple agencies.

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 = '75D30123D16109'
        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 = '7523' AND content__IDV__contractID__IDVID__PIID = '75D30123D16109'
    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 811,332,890.50 811.33 million 9

Insight

Over the 10-year window, obligations for vehicle 75D30123D16109 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for $811.33 million across 9 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The distribution suggests sustained activity in a single industrial category rather than a broad mix of vendors or requirements.

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 = '75D30123D16109'
    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 811,332,890.50 811.33 million 9

Insight

Obligations for PIID 75D30123D16109 are fully concentrated in PSC 6505, Drugs and Biologicals, with $811.33 million across 9 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSC categories in the provided data. The pattern suggests sustained reliance on this vehicle for pharmaceutical and biologics-related requirements.

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 = '75D30123D16109'
    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
2023 706,670,326.70 706.67 million 7
2024 104,662,563.80 104.66 million 2

Insight

Obligations under PIID 75D30123D16109 are concentrated in 2023, when 7 awards totaled $706.67 million. In 2024, activity declined sharply to 2 awards and $104.66 million, indicating a substantial drop in annual obligated value and award count across the 10-year window. This pattern suggests the vehicle experienced a one-year peak followed by a materially lower level of obligation in the subsequent 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.