Vehicle Number

Vehicle Number 7523 / 75D30125D00196 Federal Contract Action Summary (Last Year)

Vehicle number record for PIID 75D30125D00196 at agency 7523, showing 5 award actions and $1.29 billion obligated in the last full year.

This page summarizes the vehicle number associated with PIID 75D30125D00196 for agency 7523 during the last full year. The record reflects 5 award actions with total obligations of $1,294,620,726.13 and an average action value of $258,924,145.23.

Generated at 03/20/2026

Analysis period: Last full year

Amounts shown are based on the last full year analysis window and the exact obligated total is $1,294,620,726.13.

Agency ID
7523
PIID
75D30125D00196
Type
Vehicle
Total Obligated
1.29 billion
1,294,620,726.13
Actions
5
Average Action Value
258,924,145.23

Overview

The vehicle number entry identifies a procurement record tied to PIID 75D30125D00196 under agency 7523. In the last full year, the record shows 5 award actions and a total obligated value of $1,294,620,726.13. The average value per action was $258,924,145.23.

How to use this page

Use this page to review obligation volume and action count for the vehicle number associated with this PIID. The figures are useful for comparing contract activity across time periods or against other procurement records. This page does not add contract scope or performance details beyond the provided award data.

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 = '75D30125D00196'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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,294,620,726.13 1.29 billion 5

Insight

For the 1-year window, obligations under PIID 75D30125D00196 are fully concentrated in a single agency: the Centers for Disease Control and Prevention (Agency ID 7523). CDC accounts for $1.29 billion across 5 awards, indicating a highly concentrated obligation profile with limited agency distribution. This concentration suggests the vehicle is being used primarily, if not exclusively, for CDC-funded activity over the period.

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 = '75D30125D00196'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '75D30125D00196'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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,294,620,726.13 1.29 billion 5

Insight

Obligations for PIID 75D30125D00196 over the 1-year window are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for 1.29 billion across 5 awards, indicating a narrow distribution of obligated dollars within a single industry code. The concentration suggests this vehicle is being used primarily for pharmaceutical manufacturing requirements rather than a diversified mix of NAICS categories.

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 = '75D30125D00196'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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,294,620,726.13 1.29 billion 5

Insight

Obligations under PIID 75D30125D00196 are fully concentrated in PSC 6505, Drugs and Biologicals, with 5 awards totaling $1.29 billion over the 1-year window. This indicates a highly specialized acquisition profile with no diversification across PSCs in the provided results. The average obligation per award is also substantial, consistent with large-dollar pharmaceutical or biological procurements.

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 = '75D30125D00196'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,294,620,726.13 1.29 billion 5

Insight

For the 1-year window, the vehicle recorded $1.29 billion in total obligated dollars in FY 2025 across 5 awards, indicating a very concentrated obligation profile. The limited award count suggests the funding is distributed across few actions rather than broadly across many awards. This level of concentration may warrant review of whether obligations are tied to a small number of high-value modifications or 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.