Vehicle Number

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

Federal procurement overview for vehicle number 75D30121D10576 under agency 7523, covering obligations and award activity over the last 5 years.

This page summarizes vehicle number 75D30121D10576 for agency 7523 using FPDS award activity from the last 5 years. The record shows 10 award actions and total obligated amount of 560.45 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar values are shown as reported, with total obligated exact at 560454087.09 and average action value at 56045408.71.

Agency ID
7523
PIID
75D30121D10576
Type
Vehicle
Total Obligated
560.45 million
560,454,087.09
Actions
10
Average Action Value
56,045,408.71

Overview

The procurement record for vehicle number 75D30121D10576 shows 10 award actions during the last 5 years. Total obligated value is 560,454,087.09, with an average action value of 56,045,408.71. This page is limited to the entity, agency ID 7523, and the provided obligation totals.

How to use this page

Use this page to review award volume and obligation level for vehicle number 75D30121D10576 within the selected time window. The figures support basic FPDS analysis of procurement activity without adding assumptions about contract scope, performance, or vendor details.

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 = '75D30121D10576'
    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 560,454,087.09 560.45 million 10

Insight

Over the 5-year window, obligations for PIID 75D30121D10576 are fully concentrated in the Centers for Disease Control and Prevention, which accounts for the entire reported total of $560.45 million across 10 awards. This indicates a single-agency funding profile with no diversification across additional agencies in the provided data. The award count suggests repeated use of the vehicle within the same agency rather than a broad distribution of obligation sources.

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 = '75D30121D10576'
        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 = '75D30121D10576'
    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
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 560,454,087.09 560.45 million 10

Insight

Over the 5-year window for vehicle PIID 75D30121D10576, obligations are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. This NAICS accounts for $560.45 million across 10 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The distribution suggests sustained reliance on a single biologics manufacturing category within this 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 = '75D30121D10576'
    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 560,454,087.09 560.45 million 10

Insight

Over the 5-year window, this vehicle is concentrated entirely in PSC 6505, Drugs and Biologicals, with $560.45 million obligated across 10 awards. The obligation base is fully focused in a single product service code, indicating a narrow procurement profile and limited PSC diversification. This concentration suggests the vehicle has been used primarily for drug and biological acquisitions rather than a mixed goods portfolio.

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 = '75D30121D10576'
    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
2021 532,571,267.27 532.57 million 7
2022 27,885,219.47 27.89 million 2
2025 -2,399.65 -2.40 thousand 1

Insight

Obligations under PIID 75D30121D10576 are highly concentrated in 2021, with 7 awards totaling $532.57 million. Activity drops sharply in 2022 to 2 awards and $27.89 million, indicating a steep decline in obligated value after the initial peak. A single 2025 transaction reflects a negligible negative obligation of $2.40 thousand, which is immaterial relative to prior years and may indicate an adjustment.

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.