Vehicle Number

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

Procurement summary for vehicle number associated with agency 7523 and PIID 75D30125D00194 over the last 5 years.

This page presents the federal award history for vehicle number tied to agency 7523 under PIID 75D30125D00194. The analysis window covers the last 5 years and shows 5 award actions totaling 920.93 million in obligated funds.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated value is shown as 920931033.23, with a readable total of 920.93 million and an average action value of 184186206.65.

Agency ID
7523
PIID
75D30125D00194
Type
Vehicle
Total Obligated
920.93 million
920,931,033.23
Actions
5
Average Action Value
184,186,206.65

Overview

The record for vehicle number under agency 7523 and PIID 75D30125D00194 includes 5 award actions in the last 5 years. Total obligated funding is 920,931,033.23, with an average action value of 184,186,206.65. This page is limited to the supplied award metrics and does not add contract detail beyond those values.

How to use this page

Use this page to review the scale and cadence of award activity tied to vehicle number over the analysis window. The figures support quick comparison of total obligated value, action count, and average action size for this PIID and agency ID.

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 = '75D30125D00194'
    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 920,931,033.23 920.93 million 5

Insight

Over the 5-year window, obligations under PIID 75D30125D00194 are entirely concentrated in the Centers for Disease Control and Prevention, which accounts for $920.93 million across 5 awards. This indicates a highly concentrated funding profile with no other agencies represented in the provided rows. The low award count relative to the obligated amount suggests substantial value concentrated in a small number of actions.

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 = '75D30125D00194'
        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 = '75D30125D00194'
    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 920,931,033.23 920.93 million 5

Insight

Over the 5-year window, obligations for vehicle 75D30125D00194 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for $920.93 million across 5 awards, indicating a highly concentrated obligation profile with no diversification across other NAICS in the provided data. The award pattern suggests repeated funding within a single industry segment rather than broad distribution across multiple sectors.

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 = '75D30125D00194'
    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 920,931,033.23 920.93 million 5

Insight

Within the 5-year window for vehicle PIID 75D30125D00194, obligations are fully concentrated in PSC 6505, Drugs and Biologicals. The vehicle reflects a narrow distribution profile, with 5 awards accounting for $920.93 million in total obligated amount. This concentration indicates that the vehicle is being used predominantly for pharmaceutical and biologics-related requirements rather than a diversified mix of product categories.

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 = '75D30125D00194'
    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
2025 920,931,033.23 920.93 million 5

Insight

For PIID 75D30125D00194, FY2025 obligations total $920.93 million across 5 awards, indicating very high concentration in a small number of actions. The annual trend window contains only FY2025 data, so no multi-year movement can be assessed from the provided rows. The observed distribution suggests substantial annual spend is being executed through this vehicle.

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.