Vehicle Number

Vehicle Number 7523 / 75D30124D19009 Federal Contract Action Summary (Last Year)

Analyst summary of vehicle number 75D30124D19009 for agency 7523, covering last full year award activity and obligated amounts.

This page summarizes federal procurement activity for vehicle number 75D30124D19009 under agency ID 7523 during the last full year. The record shows 4 award actions with total obligations of -$86.92 million and an average action value of -$21.73 million.

Generated at 03/21/2026

Analysis period: Last full year

Obligation values are shown as provided in the source data, with an exact total of -86,920,170.58 and a readable total of -86.92 million.

Agency ID
7523
PIID
75D30124D19009
Type
Vehicle
Total Obligated
-86.92 million
-86,920,170.58
Actions
4
Average Action Value
-21,730,042.65

Overview

For the last full year, vehicle number 75D30124D19009 is associated with 4 award actions recorded under agency ID 7523. The total obligated amount is -$86,920,170.58, which is displayed as -$86.92 million in readable form. The average action value is -$21,730,042.65.

How to use this page

Use this page to review the basic procurement profile for vehicle number 75D30124D19009 and to compare its obligated value against other awards in the same agency. The figures support quick analysis of action count, total obligation, and average action size for the selected 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 = '75D30124D19009'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 -86,920,170.58 -86.92 million 4

Insight

Over the past 1 year, obligations under PIID 75D30124D19009 are entirely concentrated in the Centers for Disease Control and Prevention, which accounts for all 4 reported awards. Net obligations are negative at -$86.92 million, indicating substantial deobligation or downward adjustment activity rather than net new funding. With no other agencies reported in this window, the award activity is fully concentrated within a single agency.

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 = '75D30124D19009'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '75D30124D19009'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 -86,920,170.58 -86.92 million 4

Insight

Obligations in the 1-year window are entirely concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing, with -$86.92 million across 4 awards. This indicates a highly concentrated obligation profile for the vehicle over the period, with no other NAICS codes represented in the provided data. The negative total obligated amount suggests net deobligations or downward adjustments within this NAICS category.

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 = '75D30124D19009'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 -86,920,170.58 -86.92 million 4

Insight

Over the last 1 year, obligations under PIID 75D30124D19009 are entirely concentrated in PSC 6505, Drugs and Biologicals, with $86.92 million in net obligations across 4 awards. This indicates a highly focused vehicle profile with no visible diversification across PSC categories in the provided data. The negative total obligated value suggests net deobligations or downward adjustments during the period, which is significant for interpreting current funding activity.

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 = '75D30124D19009'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -86,920,170.58 -86.92 million 4

Insight

Over the 1-year window, this vehicle records 4 awards in FY 2025 totaling -$86.92 million in obligated value. Obligation activity is fully concentrated in a single year, so no multi-year trend or dispersion can be assessed from the provided data. The negative total indicates net de-obligation activity rather than positive funding growth.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.