Vehicle Number

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

Procurement record for vehicle number associated with agency 7523 and PIID 75D30119D04509 over the last 10 years.

This page summarizes award activity for vehicle number tied to agency ID 7523 under PIID 75D30119D04509 during the last 10 years. The record shows 8 award actions with total obligations of $720.87 million and an average action value of $90.11 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated amounts are shown as both readable and exact values: $720.87 million and $720,867,865.90.

Agency ID
7523
PIID
75D30119D04509
Type
Vehicle
Total Obligated
720.87 million
720,867,865.90
Actions
8
Average Action Value
90,108,483.24

Overview

The available record covers one vehicle entry linked to agency ID 7523 and PIID 75D30119D04509 over a 10-year analysis window. Across 8 award actions, total obligations reached $720,867,865.90, with an average action value of $90,108,483.24. This page is intended to support review of obligation level and award frequency for that vehicle record.

How to use this page

Use this page to quickly assess the scale of obligated funding and the number of award actions associated with the vehicle record. The summary is limited to the inputs provided here and does not add contract type, vendor, or performance detail.

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 = '75D30119D04509'
    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 720,867,865.90 720.87 million 8

Insight

Over the 10-year window, obligations for this vehicle are concentrated entirely within the Centers for Disease Control and Prevention (agency 7523), which accounts for $720.87 million across 8 awards. This indicates a highly focused award distribution with all reported obligation activity tied to a single agency. The relatively small award count paired with substantial obligated dollars suggests a limited number of higher-value actions rather than broad award dispersion.

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 = '75D30119D04509'
        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 = '75D30119D04509'
    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
325411 MEDICINAL AND BOTANICAL MANUFACTURING 720,867,865.90 720.87 million 8

Insight

Obligations for vehicle PIID 75D30119D04509 over the 10-year window are fully concentrated in NAICS 325411, Medicinal and Botanical Manufacturing. This sector accounts for $720.87 million across 8 awards, indicating a highly concentrated award profile with no diversification across other NAICS codes in the provided data. The distribution suggests sustained obligation activity within a single industrial classification rather than a broad procurement mix.

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 = '75D30119D04509'
    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 720,867,865.90 720.87 million 8

Insight

Obligations under PIID 75D30119D04509 are fully concentrated in PSC 6505, Drugs and Biologicals, with $720.87 million across 8 awards over the 10-year window. This indicates a narrow product mix and a high degree of category concentration for the vehicle. The limited award count alongside very large obligated value suggests the vehicle was used for repeated, high-value procurement of the same PSC rather than a diversified set of supplies.

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 = '75D30119D04509'
    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
2019 672,153,617.57 672.15 million 5
2020 48,714,248.33 48.71 million 2
2023 0.00 0.00 1

Insight

Obligations for PIID 75D30119D04509 are highly concentrated in 2019, when 5 awards accounted for $672.15 million, far exceeding all other years in the 10-year window. Activity drops sharply in 2020 to $48.71 million across 2 awards, indicating a much lower follow-on level of obligation. In 2023, there is 1 award with zero obligated dollars, suggesting recorded activity without funding obligation in that year.

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.