Vehicle Number

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

Vehicle number analysis for PIID 75D30120D07514 under Agency ID 7523 over the last 5 years.

This page summarizes award activity for vehicle number tied to PIID 75D30120D07514 and Agency ID 7523 during the last 5 years. The record shows 3 award actions with total obligated amounts of -956.87 thousand, or -956,872.19 exact.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated values are shown as provided in the source data and may include deobligations or adjustments.

Agency ID
7523
PIID
75D30120D07514
Type
Vehicle
Total Obligated
-956.87 thousand
-956,872.19
Actions
3
Average Action Value
-318,957.40

Overview

The analyzed record contains 3 award actions in the last 5 years, with an average action value of -318,957.4. Total obligated amount across the period is -956,872.19, presented in the source as -956.87 thousand.

How to use this page

Use this page to review the award-level history associated with vehicle number for PIID 75D30120D07514. The figures reflect the provided obligation totals and action count for Agency ID 7523 without additional interpretation.

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 = '75D30120D07514'
    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 -956,872.19 -956.87 thousand 3

Insight

Over the 5-year window, obligations under PIID 75D30120D07514 are fully concentrated in a single top agency: the Centers for Disease Control and Prevention (agency ID 7523). CDC accounts for 3 awards and a net total obligated amount of -$956,872.19, indicating a negative funding balance over the period. With no other agencies listed in the provided rows, there is no evidence of interagency distribution for this vehicle in the reported data.

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 = '75D30120D07514'
        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 = '75D30120D07514'
    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
325414 BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING -956,872.19 -956.87 thousand 3

Insight

Over the 5-year window for PIID 75D30120D07514, obligations in the top NAICS category are fully concentrated in NAICS 325414, Biological Product (Except Diagnostic) Manufacturing. This category accounts for 3 awards and a net obligated total of -$956.87 thousand, indicating a downward net funding position in this NAICS over the period. No other NAICS codes are provided in this section, so the available data indicate a single-category concentration rather than a distributed mix.

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 = '75D30120D07514'
    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 -956,872.19 -956.87 thousand 3

Insight

Obligations are fully concentrated in PSC 6505, Drugs and Biologicals, with a net total of -$956.87 thousand across 3 awards over the 5-year window. The negative obligation value indicates overall deobligation activity in this PSC rather than net new spending. Because only one PSC appears, there is no evidence of distribution across multiple product/service categories for this vehicle.

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 = '75D30120D07514'
    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 -956,872.19 -956.87 thousand 2
2024 0.00 0.00 1

Insight

Over the 5-year window, activity for PIID 75D30120D07514 is limited to two observed years, indicating a sparse and highly concentrated obligation profile. In 2021, the vehicle recorded negative obligations of $956.87 thousand across two awards, while 2024 shows one award with zero obligated dollars. This pattern suggests no sustained annual funding trend and indicates the vehicle has had minimal recent obligation activity.

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.