Vehicle Number

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

Procurement profile for vehicle number PIID 75D30122D12997 under agency 7523, summarizing obligations over the last 10 years.

This page provides an analyst view of procurement activity for vehicle number 75D30122D12997 associated with agency 7523. Over the last 10 years, the record shows 5 award actions and total obligated funding of 134.79 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided readable amount of 134.79 million and exact obligated value of 134787265.2 for the stated analysis window.

Agency ID
7523
PIID
75D30122D12997
Type
Vehicle
Total Obligated
134.79 million
134,787,265.20
Actions
5
Average Action Value
26,957,453.04

Overview

The available record for vehicle number 75D30122D12997 under agency 7523 covers a 10-year window with 5 award actions. Total obligated funding is 134787265.2, with an average action value of 26957453.04. This page is limited to the supplied identifiers and obligation totals.

How to use this page

Use this page to review the scale and concentration of obligated funding tied to PIID 75D30122D12997. The combination of total obligations, action count, and average action value supports basic procurement analysis without adding details not present in the source inputs.

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 = '75D30122D12997'
    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 134,787,265.20 134.79 million 5

Insight

The awards under PIID 75D30122D12997 are fully concentrated at the Centers for Disease Control and Prevention, which accounts for the entire reported obligation within this 10-year window. CDC received 5 awards totaling $134.79 million, indicating a limited but substantial award distribution to a single agency. This concentration suggests the vehicle has been used exclusively, in the reported data, for CDC-funded obligations rather than broadly 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 = '75D30122D12997'
        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 = '75D30122D12997'
    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 134,787,265.20 134.79 million 5

Insight

Obligations under PIID 75D30122D12997 are fully concentrated in NAICS 325411, Medicinal and Botanical Manufacturing, with $134.79 million across 5 awards over the 10-year window. This indicates a narrow industrial focus and limited NAICS diversification for the vehicle. The average obligated value is approximately $26.96 million per award, suggesting a small number of relatively large actions 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 = '75D30122D12997'
    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 134,787,265.20 134.79 million 5

Insight

Obligations for PIID 75D30122D12997 are fully concentrated in PSC 6505, Drugs and Biologicals, with $134.79 million across 5 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSC categories in the provided data. The low award count relative to the obligated amount suggests a small number of high-value actions drive the vehicle’s obligation profile.

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 = '75D30122D12997'
    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
2021 2,932.00 2.93 thousand 1
2022 134,784,333.20 134.78 million 3
2024 0.00 0.00 1

Insight

Obligations for PIID 75D30122D12997 are highly concentrated in 2022, when $134.78 million across 3 awards accounted for nearly all recorded activity in the 10-year window. By comparison, 2021 shows only $2.93 thousand in 1 award, indicating minimal prior-year activity relative to 2022. The 2024 entry reflects 1 award with no obligated value, suggesting a non-obligating action or zero-dollar transaction.

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.