Vehicle Number

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

Analysis of vehicle number activity for Agency ID 7523 under PIID 75D30123D16108 over the last 5 years, showing 7 award actions and $2.44 billion obligated.

This page summarizes federal procurement activity for the vehicle number associated with Agency ID 7523 and PIID 75D30123D16108. Over the last 5 years, the record reflects 7 award actions totaling $2,437,840,441.99 in obligated dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are shown as both readable totals and exact obligations, and the average action value is based on 7 award actions.

Agency ID
7523
PIID
75D30123D16108
Type
Vehicle
Total Obligated
2.44 billion
2,437,840,441.99
Actions
7
Average Action Value
348,262,920.28

Overview

The analyzed period covers the last 5 years and includes 7 award actions tied to vehicle number activity under Agency ID 7523. Total obligated value is $2,437,840,441.99, with an average action value of $348,262,920.28. These figures describe the observed procurement record only and do not add unreported contract details.

How to use this page

Use this page to review the scale and frequency of vehicle number obligations associated with PIID 75D30123D16108. The summary supports basic procurement analysis by combining total obligated dollars, action count, and average action value in one record. It is intended as a factual reference for comparison and follow-up review.

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 = '75D30123D16108'
    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,437,840,441.99 2.44 billion 7

Insight

Over the 5-year window, all reported obligations for this vehicle are concentrated in a single agency: the Centers for Disease Control and Prevention (Agency ID 7523). CDC accounts for $2.44 billion across 7 awards, indicating a highly concentrated obligation profile with limited distribution across agencies. The small award count relative to the total obligated suggests substantial value is concentrated in a few actions rather than broadly dispersed.

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 = '75D30123D16108'
        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 = '75D30123D16108'
    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,437,840,441.99 2.44 billion 7

Insight

Obligations under PIID 75D30123D16108 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with $2.44 billion across 7 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the vehicle is being used primarily for pharmaceutical-related acquisitions.

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 = '75D30123D16108'
    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,437,840,441.99 2.44 billion 7

Insight

Obligations for this vehicle are highly concentrated in PSC 6505, Drugs and Biologicals, which accounts for $2.44 billion across 7 awards over the 5-year window. The low award count relative to total obligations indicates a small number of high-value actions rather than broad distribution across multiple product categories. This concentration suggests the vehicle is primarily used for pharmaceutical and biologics procurement activity.

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 = '75D30123D16108'
    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
2023 2,086,671,770.64 2.09 billion 4
2024 351,597,620.34 351.60 million 2
2025 -428,948.99 -428.95 thousand 1

Insight

Obligations under PIID 75D30123D16108 are highly concentrated in 2023, which accounts for 2.09 billion across 4 awards and dominates the 5-year window. Funding drops sharply in 2024 to 351.60 million across 2 awards, indicating a marked reduction in annual obligation volume. 2025 shows a small negative obligation of 428.95 thousand on 1 award, suggesting a minimal deobligation or adjustment rather than new funding growth.

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.