Vehicle Number

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

Federal procurement analysis for vehicle number associated with agency 7523 and PIID 75D30120D07516 over the last 10 years.

This page summarizes award activity tied to vehicle number for agency 7523 under PIID 75D30120D07516 during the last 10 years. The record shows 9 award actions with total obligations of $1,203,870,828.08 and an average action value of $133,763,425.34.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from rounded display values because the exact obligation amount is $1,203,870,828.08.

Agency ID
7523
PIID
75D30120D07516
Type
Vehicle
Total Obligated
1.20 billion
1,203,870,828.08
Actions
9
Average Action Value
133,763,425.34

Overview

The procurement record for vehicle number under agency 7523 and PIID 75D30120D07516 includes 9 award actions in the last 10 years. Total obligated funding is $1,203,870,828.08, with an average action value of $133,763,425.34.

How to use this page

Use this page to review the scale and cadence of award activity associated with this vehicle record. The figures support basic trend review, obligation tracking, and comparison with other procurement records in the same 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 = '75D30120D07516'
    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 1,203,870,828.08 1.20 billion 9

Insight

For vehicle 75D30120D07516 over the 10-year window, obligations are fully concentrated within the Centers for Disease Control and Prevention, which accounts for $1.20 billion across 9 awards. This indicates a highly concentrated agency-level distribution with no evidence of broader cross-agency use in the provided data. The award count suggests repeated use of the vehicle by the same agency rather than dispersed adoption.

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 = '75D30120D07516'
        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 = '75D30120D07516'
    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
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 1,203,870,828.08 1.20 billion 9

Insight

Obligations for PIID 75D30120D07516 are fully concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with $1.20 billion obligated across 9 awards over the 10-year window. This indicates a highly focused procurement profile with no visible distribution across other NAICS codes in the provided data. The concentration suggests the vehicle is used primarily for pharmaceutical-related requirements rather than a broad set of industry 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 = '75D30120D07516'
    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 1,203,870,828.08 1.20 billion 9

Insight

For this 10-year vehicle record, obligations are highly concentrated in PSC 6505, Drugs and Biologicals, totaling $1.20 billion across 9 awards. This indicates the vehicle has been used primarily to support pharmaceutical and biologics purchases rather than a broad mix of product categories. The low award count relative to obligated dollars suggests a small number of high-value actions drove most activity in this PSC.

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 = '75D30120D07516'
    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
2020 1,331,797,984.47 1.33 billion 5
2021 -127,927,156.39 -127.93 million 3
2025 0.00 0.00 1

Insight

Obligations for PIID 75D30120D07516 are highly concentrated in 2020, when the vehicle recorded $1.33 billion across 5 awards. Activity then declined sharply in 2021 to a net negative $127.93 million across 3 awards, indicating a significant downward adjustment relative to the prior year. A single award is recorded in 2025 with no obligated dollars, suggesting minimal recent obligation activity within the reported window.

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.