Vehicle Number

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

Federal procurement summary for vehicle number 75D30124D18656 under agency 7523 over the last 5 years.

This page summarizes award activity for vehicle number 75D30124D18656 across the last 5 years. The record shows 7 award actions with total obligations of 2.61 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Values reflect the provided analysis window and obligated amounts, with exact total obligations of 2611180788.61 and an average action value of 373025826.94.

Agency ID
7523
PIID
75D30124D18656
Type
Vehicle
Total Obligated
2.61 billion
2,611,180,788.61
Actions
7
Average Action Value
373,025,826.94

Overview

The procurement record for vehicle number 75D30124D18656 covers 7 award actions in the last 5 years. Total obligations reached 2.61118078861 billion, with an average action value of 373025826.94. The page is intended to support review of award volume and obligated spending for this vehicle.

How to use this page

Use this page to identify the overall scale of award activity tied to vehicle number 75D30124D18656 and to compare action counts with obligated dollars. The summary is limited to the supplied FPDS context and does not infer contract scope, performance, or recipients.

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 = '75D30124D18656'
    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 2,611,180,788.61 2.61 billion 7

Insight

Over the 5-year window, obligations under PIID 75D30124D18656 are fully concentrated with the Centers for Disease Control and Prevention (agency ID 7523), which accounts for $2.61 billion across 7 awards. This indicates a highly concentrated obligation profile with no other top-agency recipients reflected in the provided data. The small award count relative to obligated dollars suggests a limited number of large-value actions rather than broad distribution across 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 = '75D30124D18656'
        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 = '75D30124D18656'
    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 2,611,180,788.61 2.61 billion 7

Insight

Across the 5-year window for vehicle 75D30124D18656 under agency 7523, obligations are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The single reported NAICS accounts for $2.61 billion across 7 awards, indicating a highly concentrated procurement profile with no distribution across other NAICS codes in the provided data. This concentration suggests the vehicle has been used primarily for pharmaceutical preparation manufacturing 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 = '75D30124D18656'
    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 2,611,180,788.61 2.61 billion 7

Insight

Over the 5-year window for PIID 75D30124D18656, obligations are fully concentrated in PSC 6505, Drugs and Biologicals, with $2.61 billion across 7 awards. This indicates a highly focused procurement profile with limited PSC diversification under this vehicle. The distribution suggests sustained reliance on a single medical supply category rather than a broad mix of product lines.

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 = '75D30124D18656'
    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
2024 2,342,411,113.32 2.34 billion 5
2025 268,769,675.29 268.77 million 2

Insight

Obligations under PIID 75D30124D18656 are heavily concentrated in 2024, with 2.34 billion obligated across 5 awards. In 2025, obligated dollars declined to 268.77 million across 2 awards, indicating a much lower annual volume and reduced award activity relative to 2024. Over the 5-year window provided, the observed activity is clustered in these two years, with 2024 representing the dominant obligation 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.