Vehicle Number

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

Vehicle number record for Agency ID 7523 under PIID 75D30124D18658, showing procurement activity over the last 5 years.

This page summarizes the vehicle number associated with PIID 75D30124D18658 for Agency ID 7523 across the last 5 years. The record shows 8 award actions with total obligated value of $1.002 billion and an average action value of $125.27 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of readable FPDS-observed obligations and may not capture non-readable or out-of-scope actions.

Agency ID
7523
PIID
75D30124D18658
Type
Vehicle
Total Obligated
1.00 billion
1,002,127,309.44
Actions
8
Average Action Value
125,265,913.68

Overview

The vehicle number record for PIID 75D30124D18658 is associated with Agency ID 7523 and shows activity concentrated in the last 5 years. Across 8 award actions, total obligated value reached $1,002,127,309.44, or about $1.00 billion in readable terms.

How to use this page

Use this page to review the scale and frequency of procurement actions tied to this vehicle number. The average action value of $125,265,913.68 provides a compact view of how obligation is distributed across the 8 recorded actions.

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 = '75D30124D18658'
    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 1,002,127,309.44 1.00 billion 8

Insight

Over the 5-year window, obligations on this vehicle are fully concentrated within the Centers for Disease Control and Prevention (agency ID 7523), which accounts for the entire reported $1.00 billion across 8 awards. This indicates a highly focused use of the vehicle with no distribution across other top agencies in the provided data. The average obligation per award is approximately $125.3 million, suggesting relatively large individual award values.

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 = '75D30124D18658'
        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 = '75D30124D18658'
    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 1,002,127,309.44 1.00 billion 8

Insight

Obligations for PIID 75D30124D18658 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, over the 5-year window. This NAICS accounts for $1.00 billion across 8 awards, indicating a narrow industrial distribution for this vehicle. The spend pattern suggests the vehicle has been used consistently for pharmaceutical preparation activities rather than across a broad NAICS mix.

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 = '75D30124D18658'
    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 1,002,127,309.44 1.00 billion 8

Insight

Obligations are fully concentrated in PSC 6505, Drugs and Biologicals, at $1.00 billion across 8 awards. This indicates a highly focused spend profile within the reviewed 5-year window, with no other PSCs represented in the provided rows. The distribution suggests the vehicle is used almost exclusively for pharmaceutical and biological procurements under PIID 75D30124D18658.

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 = '75D30124D18658'
    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 1,277,794,493.60 1.28 billion 5
2025 -275,667,184.16 -275.67 million 3

Insight

Obligations under PIID 75D30124D18658 are highly concentrated in 2024, with 1.28 billion across 5 awards. In 2025, obligations decline to -275.67 million across 3 awards, indicating a sharp year-over-year reversal rather than sustained positive funding growth. The change suggests the vehicle’s annual obligation pattern is volatile and concentrated in a small number of awards.

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.