Vehicle Number

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

FPDS query page for vehicle number under Agency ID 7523 and PIID 75D30120D07516 covering the last 5 years of award activity.

This page summarizes procurement activity tied to the vehicle number record for Agency ID 7523. Over the last 5 years, it shows 4 award actions with total obligated funding of -127.93 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated values are shown in readable and exact forms, and the average action value is based on the 4 recorded award actions.

Agency ID
7523
PIID
75D30120D07516
Type
Vehicle
Total Obligated
-127.93 million
-127,927,156.39
Actions
4
Average Action Value
-31,981,789.10

Overview

The record for vehicle number under Agency ID 7523 and PIID 75D30120D07516 reflects 4 award actions in the last 5 years. Total obligated amount is -127,927,156.39, which reads as -127.93 million, and the average action value is -31,981,789.1. These figures provide a compact view of the obligation pattern captured in the queried period.

How to use this page

Use this page to review the award count and obligated totals associated with the vehicle number record. The values support basic trend review, cross-checking against the PIID, and comparison with other FPDS query results for the same agency or 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 = '75D30120D07516'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 -127,927,156.39 -127.93 million 4

Insight

Over the 5-year window, obligations under vehicle PIID 75D30120D07516 are concentrated entirely with the Centers for Disease Control and Prevention (agency 7523). CDC accounts for all 4 awards and a net total obligated amount of -$127.93 million, indicating that activity under this vehicle is fully concentrated within a single agency relationship. The negative obligated value suggests substantial deobligations or downward adjustments over the period rather than net growth in funded activity.

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 5 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 5 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 -127,927,156.39 -127.93 million 4

Insight

Over the 5-year window, all reported obligations for vehicle 75D30120D07516 are concentrated in NAICS 325412, Pharmaceutical Preparation Manufacturing. This NAICS accounts for 100% of the reported activity in the provided data, with 4 awards totaling -$127.93 million in obligations. The negative obligated total indicates net deobligation or downward adjustment activity within this NAICS, rather than positive funding growth.

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 5 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 -127,927,156.39 -127.93 million 4

Insight

Over the 5-year window, obligations for this vehicle are concentrated entirely in PSC 6505, Drugs and Biologicals. This category accounts for net obligations of -$127.93 million across 4 awards, indicating all recorded activity in the provided rows is tied to a single PSC. The negative total suggests deobligations or funding adjustments dominate this vehicle’s recorded obligation history.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 -127,927,156.39 -127.93 million 3
2025 0.00 0.00 1

Insight

Activity is highly concentrated in 2021, when 3 awards accounted for -$127.93 million in total obligated value. In 2025, there was 1 award with no obligated value reported, indicating minimal recent activity within the 5-year window. The distribution suggests the vehicle’s obligation profile is dominated by a single earlier year rather than a sustained annual pattern.

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