Vehicle Number

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

Procurement overview for vehicle number under agency ID 7523 and PIID 75D30120D07116, covering the last 10 years of award activity.

This page summarizes federal procurement activity for vehicle number associated with agency ID 7523 and PIID 75D30120D07116 over the last 10 years. The record shows 8 award actions with total obligations of 51.78 million dollars and an average action value of 6,472,754.79.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the readable and exact obligated amounts provided for the analysis window and may differ by rounding.

Agency ID
7523
PIID
75D30120D07116
Type
Vehicle
Total Obligated
51.78 million
51,782,038.30
Actions
8
Average Action Value
6,472,754.79

Overview

The procurement record for vehicle number under agency ID 7523 and PIID 75D30120D07116 spans 8 award actions across the last 10 years. Total obligated dollars are 51,782,038.3, which is shown on the page as 51.78 million dollars. The average action value is 6,472,754.79, indicating a small set of relatively high-value actions.

How to use this page

Use this page to review obligation totals, action volume, and average action value for the identified vehicle record. It is most useful for quick comparison, trend review within the 10-year window, and linking the vehicle entry to its associated PIID and agency ID.

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 = '75D30120D07116'
    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 51,782,038.30 51.78 million 8

Insight

For PIID 75D30120D07116 over the 10-year window, obligations are fully concentrated in a single agency: the Centers for Disease Control and Prevention. CDC accounts for $51.78 million across 8 awards, indicating a narrow agency distribution for this vehicle. This concentration suggests the vehicle has been used exclusively within one agency rather than 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 = '75D30120D07116'
        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 = '75D30120D07116'
    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 51,782,038.30 51.78 million 8

Insight

Over the 10-year window, obligations for vehicle PIID 75D30120D07116 are fully concentrated in NAICS 325414, Biological Product (except Diagnostic) Manufacturing. This single NAICS accounts for $51.78 million across 8 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award pattern suggests recurring activity in the same industry segment rather than broad distribution.

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 = '75D30120D07116'
    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 51,782,038.30 51.78 million 8

Insight

Obligations for this vehicle are fully concentrated in PSC 6505, Drugs and Biologicals, with $51.78 million obligated across 8 awards over the 10-year window. This indicates a narrow procurement profile centered on a single product/service category rather than a diversified mix. The award count suggests repeated use of the vehicle for this PSC, with spending distributed across multiple awards but not across multiple PSCs.

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 = '75D30120D07116'
    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 51,782,038.30 51.78 million 7
2024 0.00 0.00 1

Insight

Obligations for PIID 75D30120D07116 are highly concentrated in 2020, when 7 awards accounted for 51.78 million in total obligated dollars. By 2024, the vehicle shows 1 recorded award with no obligated dollars, indicating no current funding activity under the provided window. Overall, the observed pattern suggests a discrete historical obligation spike rather than a sustained annual funding stream.

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.