Vehicle Number

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

Procurement analysis for vehicle number 75D30123D16111 at agency 7523 over the last 10 years, showing 10 award actions and $841.14 million obligated.

This page summarizes federal procurement activity tied to vehicle number 75D30123D16111 for agency 7523 across the last 10 years. The record shows 10 award actions with total obligations of $841,136,854.88 and an average action value of $84,113,685.49.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are reported as obligated totals for the selected analysis window and may reflect multiple action types within the award record.

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 analysis window covers the last 10 years and includes 10 award actions associated with vehicle number 75D30123D16111. Total obligated funding in that period is $841,136,854.88, with an average action value of $84,113,685.49. The figures provide a concise view of obligation volume for this vehicle record under agency 7523. They are useful for comparing award concentration, action frequency, and total spend within the selected period.

How to use this page

Use this page to review the scale and cadence of procurement activity tied to the vehicle number record. The award count and obligated totals support quick comparisons against other FPDS entries for the same agency or analysis period. Because the totals reflect the selected 10-year window, they are best used as a summary measure rather than a current balance. Review individual award actions for transaction-level 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 = '75D30123D16111'
    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 841,136,854.88 841.14 million 10

Insight

Across the 10-year window, the vehicle is fully concentrated in a single top agency: the Centers for Disease Control and Prevention, with $841.14 million obligated across 10 awards. This indicates a highly concentrated award distribution rather than broad agency spread. The volume and dollar value suggest the vehicle has been used repeatedly within this agency as a material contracting instrument.

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 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 = '75D30123D16111'
    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 841,136,854.88 841.14 million 10

Insight

Over the 10-year window, this vehicle’s obligations are fully concentrated in NAICS 325414, Biological Product (except Diagnostic) Manufacturing, with $841.14 million across 10 awards. This indicates a highly focused procurement profile, with no evidence here of broader NAICS diversification within the provided results. The award pattern suggests repeated use of the vehicle for the same industrial category rather than dispersed spending across multiple NAICS codes.

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 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 841,136,854.88 841.14 million 10

Insight

Over the 10-year window, this vehicle is fully concentrated in PSC 6505, Drugs and Biologicals, with $841.14 million obligated across 10 awards. The obligation profile indicates a highly focused procurement mix rather than a diversified set of product categories. The average obligation per award is substantial, suggesting large-value buys under a single PSC 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 10 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 for this vehicle were heavily concentrated in 2023, when $710.86 million was obligated across 8 awards. In 2024, obligated amount declined to $130.27 million across 2 awards, indicating a much lower annual execution level and reduced award activity. Across the two years provided, the pattern reflects a sharp year-over-year decrease in both dollars and award count.

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.