Vehicle Number

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

Federal procurement analysis for vehicle number 75D30120D07114 under Agency ID 7523 shows 6 award actions over the last 10 years and $37.19 million obligated.

This page summarizes the procurement record for vehicle number 75D30120D07114 for Agency ID 7523 across the last 10 years. The record includes 6 award actions with total obligated spending of $37,187,948.23 and an average action value of $6,197,991.37.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts are shown for the analysis window provided and include both the readable total and the exact obligated value.

Agency ID
7523
PIID
75D30120D07114
Type
Vehicle
Total Obligated
37.19 million
37,187,948.23
Actions
6
Average Action Value
6,197,991.37

Overview

The procurement record for vehicle number 75D30120D07114 spans 6 award actions in the last 10 years. Total obligated funding is $37,187,948.23, with an average action value of $6,197,991.37. This page provides a concise view of the vehicle-level spending history tied to Agency ID 7523.

How to use this page

Use this page to review the overall obligation level and award activity associated with vehicle number 75D30120D07114. The figures support basic analysis of spending scale and action frequency within the stated time period.

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 = '75D30120D07114'
    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 37,187,948.23 37.19 million 6

Insight

For PIID 75D30120D07114 over the 10-year window, all reported obligations are concentrated in a single agency: the Centers for Disease Control and Prevention. CDC accounts for $37.19 million across 6 awards, indicating a fully concentrated obligation profile within the provided data. This concentration suggests the vehicle has been used exclusively by one agency in this period, with no distribution across other agencies reflected here.

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 = '75D30120D07114'
        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 = '75D30120D07114'
    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 37,187,948.23 37.19 million 6

Insight

Over the 10-year window, obligations for PIID 75D30120D07114 are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. This category accounts for $37.19 million across 6 awards, indicating a narrow procurement distribution with all observed obligated dollars tied to a single NAICS code. The concentration suggests this vehicle has been used consistently for biologics manufacturing requirements rather than a diversified mix of services or products.

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 = '75D30120D07114'
    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 37,187,948.23 37.19 million 6

Insight

Obligations for this vehicle are concentrated entirely in PSC 6505, Drugs and Biologicals, totaling $37.19 million across 6 awards. This indicates a narrowly focused procurement profile within the 10-year window, with no evidence here of broader PSC distribution. The modest award count alongside the full obligation amount suggests repeated use of the vehicle for the same supply 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 = '75D30120D07114'
    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 37,187,948.23 37.19 million 5
2024 0.00 0.00 1

Insight

Obligations for PIID 75D30120D07114 are highly concentrated in 2020, when 5 awards accounted for $37.19 million. In 2024, there was 1 award recorded with $0 obligated, indicating no current obligation activity in the provided window. Overall, the 10-year pattern shows a sharp one-year concentration rather than a sustained distribution of obligation value.

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.