Vehicle Number

Vehicle Number 7505 / 75A50118D00036 Federal Contract Action Summary (Last Year)

Federal procurement summary for vehicle number 75A50118D00036 under Agency ID 7505 during the last full year.

This page summarizes award activity for vehicle number 75A50118D00036 in the last full year. Total obligations were $25.76 million across 5 award actions, with an average action value of $5.15 million.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the provided analysis window and reported obligation totals; exact obligated amount is 25,757,703.

Agency ID
7505
PIID
75A50118D00036
Type
Vehicle
Total Obligated
25.76 million
25,757,703.00
Actions
5
Average Action Value
5,151,540.60

Overview

The procurement record for vehicle number 75A50118D00036 shows 5 award actions in the last full year. Total obligated funding reached 25,757,703, which is 25.76 million in readable form. The average obligation per action was 5,151,540.6. This page is limited to the supplied entity type, agency ID, PIID, analysis window, and obligation totals.

How to use this page

Use this page to review the scale and frequency of award activity tied to PIID 75A50118D00036. The combination of total obligations, action count, and average action value provides a compact view of procurement activity for Agency ID 7505. The record is suitable for comparison within the same analysis window, but it does not add contract details beyond the inputs provided here.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    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
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 25,757,703.00 25.76 million 5

Insight

Over the past 1 year, obligations under vehicle PIID 75A50118D00036 were fully concentrated in a single agency: the Administration for Strategic Preparedness and Response (Agency ID 7505). That agency accounted for 25.76 million across 5 awards, indicating complete agency-level concentration within the provided 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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
        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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    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
541714 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) 25,757,703.00 25.76 million 5

Insight

Obligations under PIID 75A50118D00036 are concentrated entirely in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology), with $25.76 million across 5 awards in the 1-year window. This indicates a highly focused obligation profile with no diversification across other NAICS codes in the provided data. The concentration suggests the vehicle is being used primarily for biotechnology R&D requirements.

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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    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
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 25,757,703.00 25.76 million 5

Insight

Over the past 1 year, vehicle 75A50118D00036 shows complete PSC concentration in AN13, which accounts for the full $25.76 million obligated across 5 awards. This indicates a highly focused procurement profile with no diversification across other PSC categories in the provided data. The activity is consistent with sustained obligations in health R&D services and experimental development under 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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50118D00036'
    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 25,757,703.00 25.76 million 5

Insight

For PIID 75A50118D00036, FY2025 obligated value totals $25.76 million across 5 awards, indicating a concentrated obligation pattern within the 1-year window. The average obligation per award is approximately $5.15 million, suggesting relatively large individual actions rather than broad distribution across many transactions. With only one year of data provided, no year-over-year trend can be assessed from this window.

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.