Vehicle Number

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

Analyst summary of vehicle number activity for Agency ID 7523 under PIID 75D30123D16111 over the last 5 years, with $841.14 million obligated across 10 award actions.

This page summarizes procurement activity tied to vehicle number for Agency ID 7523 under PIID 75D30123D16111 during the last 5 years. Total obligated value is $841,136,854.88 across 10 award actions, for an average action value of $84,113,685.49.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided readable and exact obligated amounts for the 5-year analysis window and may differ by rounding in displayed figures.

Agency ID
7523
PIID
75D30123D16111
Type
Vehicle
Total Obligated
841.14 million
841,136,854.88
Actions
10
Average Action Value
84,113,685.49

Overview

The procurement record for vehicle number under PIID 75D30123D16111 shows $841,136,854.88 in total obligated value over the last 5 years. The award history includes 10 actions, with an average action value of $84,113,685.49. This page is intended to support review of obligation levels and award volume for the specified vehicle record.

How to use this page

Use this page to assess the scale of obligated spending associated with vehicle number activity for Agency ID 7523. The summary supports basic trend review, award-count comparisons, and identification of the average value per action within the stated 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 = '75D30123D16111'
    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 841,136,854.88 841.14 million 10

Insight

Over the 5-year window, all reported obligation activity for vehicle 75D30123D16111 is concentrated in a single agency: the Centers for Disease Control and Prevention (agency ID 7523). The agency accounted for 841.14 million in total obligated value across 10 awards, indicating that this vehicle’s use is entirely within CDC and is not distributed across multiple agencies. This concentration suggests the vehicle is highly agency-specific rather than broadly used across the federal enterprise.

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 = '75D30123D16111'
        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 = '75D30123D16111'
    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
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING 841,136,854.88 841.14 million 10

Insight

Over the 5-year window, this vehicle is fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing, with $841.14 million obligated across 10 awards. The obligation profile indicates a narrow distribution of activity within a single industry code, suggesting the vehicle is highly specialized rather than broadly distributed across multiple 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 = '75D30123D16111'
    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 841,136,854.88 841.14 million 10

Insight

For PIID 75D30123D16111 over the 5-year window, obligations are fully concentrated in PSC 6505, Drugs and Biologicals. This PSC accounts for $841.14 million across 10 awards, indicating a narrow product mix and a high degree of spending concentration within the vehicle. No other PSCs are reflected in the provided rows, so the visible obligation profile is entirely driven by this category.

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 = '75D30123D16111'
    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
2023 710,861,956.32 710.86 million 8
2024 130,274,898.56 130.27 million 2

Insight

Obligations under PIID 75D30123D16111 are highly concentrated in 2023, with $710.86 million across 8 awards, compared with $130.27 million across 2 awards in 2024. The year-over-year decline indicates a sharp reduction in obligated dollars and award volume over the period reviewed. This pattern suggests the vehicle experienced substantially lower activity in 2024 relative to 2023.

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.