Vehicle Number

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

Federal procurement analysis page for vehicle number 75D30124D18414 under agency ID 7523, covering the last 10 years of award activity.

This page summarizes award activity for vehicle number 75D30124D18414 within agency ID 7523 over the last 10 years. The record shows 5 award actions with total obligated funding of $40.18 million and an average action value of $8.04 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated reflects $40,176,660.70 across 5 award actions, with values shown for the last 10 years.

Agency ID
7523
PIID
75D30124D18414
Type
Vehicle
Total Obligated
40.18 million
40,176,660.70
Actions
5
Average Action Value
8,035,332.14

Overview

Vehicle number 75D30124D18414 is associated with agency ID 7523 in the provided FPDS analysis window. Over the last 10 years, the record includes 5 award actions and $40,176,660.70 in obligated funding, which averages to $8,035,332.14 per action.

How to use this page

Use this page to review high-level obligation and action-count totals for vehicle number 75D30124D18414. The figures support quick comparison within the last 10 years of reported award activity without adding assumptions beyond the recorded values.

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 = '75D30124D18414'
    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 40,176,660.70 40.18 million 5

Insight

For PIID 75D30124D18414 over the 10-year window, obligations are fully concentrated in a single agency: the Centers for Disease Control and Prevention, with $40.18 million across 5 awards. This indicates a highly concentrated agency distribution for the vehicle, with no evidence in the provided rows of obligation spread across additional agencies. The award count suggests repeated use within the same agency rather than broad interagency utilization.

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 = '75D30124D18414'
        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 = '75D30124D18414'
    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
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 40,176,660.70 40.18 million 5

Insight

Over the 10-year window, this vehicle’s obligated dollars are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. The single listed NAICS accounts for $40.18 million across 5 awards, indicating a narrow and highly concentrated use of the vehicle within this industry. No other NAICS categories are present in the provided rows, so distribution across sectors cannot be assessed from this excerpt.

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 = '75D30124D18414'
    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 40,176,660.70 40.18 million 5

Insight

For PIID 75D30124D18414 over the 10-year window, obligations are fully concentrated in PSC 6505, Drugs and Biologicals. This PSC accounts for $40.18 million across 5 awards, indicating a narrow product mix and limited distribution across PSC categories. The concentration suggests the vehicle has been used primarily for pharmaceutical and biologics procurement rather than a broader range of supply types.

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 = '75D30124D18414'
    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
2024 40,176,660.70 40.18 million 4
2025 0.00 0.00 1

Insight

Obligations for PIID 75D30124D18414 are concentrated in 2024, with 40.18 million obligated across 4 awards. In 2025, there is 1 award recorded with no obligated amount, indicating a sharp decline in funding activity from the prior year. Over the 10-year window, the observed activity is limited to these two years, with all material obligations occurring in 2024.

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.