Vehicle Number

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

Federal procurement analysis for vehicle number 75D30121D10575 under agency 7523, covering 12 actions over the last 10 years.

This page summarizes award activity for vehicle number 75D30121D10575 across the last 10 years. Total obligated amount is 1.89 billion across 12 award actions, with an average action value of 157,327,920.24.

Generated at 03/20/2026

Analysis period: Last 10 years

Monetary values are based on the provided readable total of 1.89 billion and exact total of 1887935042.9.

Agency ID
7523
PIID
75D30121D10575
Type
Vehicle
Total Obligated
1.89 billion
1,887,935,042.90
Actions
12
Average Action Value
157,327,920.24

Overview

The procurement record for vehicle number 75D30121D10575 shows 12 award actions during the last 10 years. Total obligated funding is 1,887,935,042.9, which is approximately 1.89 billion, and the average action value is 157,327,920.24. These figures describe the overall scale of obligation activity tied to this vehicle record.

How to use this page

Use this page to review the award history summary for vehicle number 75D30121D10575 within agency 7523. The combination of total obligated amount, action count, and average action value provides a compact view of procurement volume over the analysis window.

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 = '75D30121D10575'
    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 1,887,935,042.90 1.89 billion 12

Insight

For PIID 75D30121D10575 over the 10-year window, obligations are fully concentrated at a single top agency: the Centers for Disease Control and Prevention, with $1.89 billion across 12 awards. This indicates a highly concentrated distribution of vehicle activity, with no evidence in the provided rows of obligation spread across multiple agencies. The award count suggests repeated use of the vehicle by the same agency rather than isolated activity.

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 = '75D30121D10575'
        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 = '75D30121D10575'
    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 1,887,935,042.90 1.89 billion 12

Insight

Obligations for this vehicle over the 10-year window are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The single reported NAICS accounts for $1.89 billion across 12 awards, indicating a highly focused procurement profile rather than a diversified industry mix. This concentration suggests the vehicle has been used primarily for pharmaceutical preparation-related requirements within Agency ID 7523.

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 = '75D30121D10575'
    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 1,887,935,042.90 1.89 billion 12

Insight

Obligations for PIID 75D30121D10575 are fully concentrated in PSC 6505, Drugs and Biologicals, with $1.89 billion obligated across 12 awards over the 10-year window. This indicates a highly focused spending profile with no observed distribution across other PSCs in the provided data. The award count suggests repeated procurement activity within the same supply category rather than broad contract diversification.

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 = '75D30121D10575'
    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
2021 1,811,781,129.14 1.81 billion 7
2022 78,153,913.76 78.15 million 2
2023 -2,000,000.00 -2.00 million 1
2024 0.00 0.00 2

Insight

Obligations are highly concentrated in 2021, when this vehicle recorded 1.81 billion across 7 awards, far exceeding all subsequent years. Activity then dropped sharply to 78.15 million in 2022 across 2 awards, followed by a 2.00 million deobligation in 2023 and no net obligations in 2024 despite 2 awards. This pattern indicates a pronounced one-year funding spike followed by materially reduced and then neutralized obligated value.

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.