Vehicle Number

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

Analysis of vehicle number activity for Agency ID 7523 under PIID 75D30125D00198 during the last full year, with $714.82 million in total obligations across 6 award actions.

This page summarizes vehicle number procurement activity for Agency ID 7523 under PIID 75D30125D00198 over the last full year. Total obligated amount was $714,819,262.70 across 6 award actions, for an average action value of $119,136,543.78.

Generated at 03/20/2026

Analysis period: Last full year

Amounts shown reflect the provided analysis window and may differ from rounded display values because exact obligations are preserved.

Agency ID
7523
PIID
75D30125D00198
Type
Vehicle
Total Obligated
714.82 million
714,819,262.70
Actions
6
Average Action Value
119,136,543.78

Overview

The record for vehicle number under PIID 75D30125D00198 shows $714,819,262.70 obligated in the last full year. That total was distributed across 6 award actions, producing an average action value of $119,136,543.78. This page is intended to help users review the scale and cadence of obligations tied to this vehicle.

How to use this page

Use this page to identify the obligation level associated with the vehicle number and to compare the six award actions within the selected period. The figures are limited to the provided agency, PIID, and analysis window, so they should be read as a focused summary rather than a broader contract history.

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 = '75D30125D00198'
    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 714,819,262.70 714.82 million 6

Insight

Within the 1-year window, obligations for PIID 75D30125D00198 are fully concentrated in a single agency: the Centers for Disease Control and Prevention (Agency ID 7523). CDC accounts for $714.82 million across 6 awards, indicating that this vehicle’s activity is entirely associated with one agency and spread across a small number of actions. This concentration suggests limited interagency distribution and a highly focused obligation pattern.

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 = '75D30125D00198'
        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 = '75D30125D00198'
    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 714,819,262.70 714.82 million 6

Insight

Over the past 1 year, obligations for this vehicle are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. The single reported NAICS category accounts for $714.82 million across 6 awards, indicating a highly focused award pattern with no diversification across other NAICS codes in the provided data. This concentration suggests the vehicle is being used primarily for pharmaceutical preparation requirements within the period reviewed.

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 = '75D30125D00198'
    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 714,819,262.70 714.82 million 6

Insight

Obligations for this vehicle are entirely concentrated in PSC 6505, Drugs and Biologicals, totaling $714.82 million across 6 awards in the 1-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award volume is limited relative to the obligation amount, suggesting a small number of large-dollar actions drove the total.

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 = '75D30125D00198'
    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 714,819,262.70 714.82 million 6

Insight

In the 1-year window, obligations for PIID 75D30125D00198 are concentrated entirely in FY2025, with $714.82 million obligated across 6 awards. This indicates a highly concentrated funding pattern in a single fiscal year rather than a distributed multi-year trend. With no other years reported, there is no observable year-over-year change within the provided data.

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.