Vehicle Number

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

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

This page summarizes procurement activity for vehicle number 75D30119D04516 over the last 10 years. The record shows 7 award actions with total obligated amount of 484.29 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated exact is 484294684.36, and the average action value is 69184954.91 across the recorded award actions.

Agency ID
7523
PIID
75D30119D04516
Type
Vehicle
Total Obligated
484.29 million
484,294,684.36
Actions
7
Average Action Value
69,184,954.91

Overview

The procurement record for vehicle number 75D30119D04516 reflects 7 award actions within the last 10 years. Total obligated amount is 484,294,684.36, with an average action value of 69,184,954.91. The page is limited to the supplied entity, agency, PIID, and obligation totals.

How to use this page

Use this page to review obligation totals and award action volume associated with vehicle number 75D30119D04516. It is suitable for quick FPDS-style reference on agency ID 7523 and the recorded activity for PIID 75D30119D04516.

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 = '75D30119D04516'
    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 484,294,684.36 484.29 million 7

Insight

Within the 10-year window, obligations for vehicle PIID 75D30119D04516 are fully concentrated in the Centers for Disease Control and Prevention, which accounts for the entire reported total of $484.29 million. The activity is distributed across 7 awards, indicating repeated use of this vehicle rather than a single obligation event. This concentration suggests the vehicle has been used consistently within one agency rather than across multiple agencies.

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 = '75D30119D04516'
        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 = '75D30119D04516'
    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 484,294,684.36 484.29 million 7

Insight

Over the 10-year window, obligations for vehicle PIID 75D30119D04516 at agency 7523 are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. This category accounts for $484.29 million across 7 awards, indicating a highly concentrated spending pattern with no observed diversification across other NAICS codes in the provided data. The limited award count suggests repeated contracting within a single industrial base 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 = '75D30119D04516'
    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 484,294,684.36 484.29 million 7

Insight

Obligations for this vehicle are fully concentrated in PSC 6505, Drugs and Biologicals, with $484.29 million across 7 awards over the 10-year window. The average obligation per award is high, indicating a small number of large-dollar procurements rather than broad PSC diversification. This concentration suggests the vehicle is primarily used for pharmaceutical and biologics acquisitions.

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 = '75D30119D04516'
    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 469,200,733.81 469.20 million 4
2020 15,093,950.55 15.09 million 2
2023 0.00 0.00 1

Insight

Obligations for vehicle 75D30119D04516 are highly concentrated in 2019, when $469.20 million was obligated across 4 awards. Activity drops sharply in 2020 to $15.09 million across 2 awards, indicating a steep reduction in annual spend after the 2019 peak. In 2023, there is 1 recorded award with no obligated amount, suggesting continued transaction activity without associated obligations 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.