Vehicle Number

Vehicle Number 7505 / 75A50119D00018 Federal Contract Action Summary (Last 10 Years)

Vehicle number 75A50119D00018 for agency 7505 shows 21 award actions over the last 10 years with $37.51 million obligated.

This page summarizes federal procurement activity for vehicle number 75A50119D00018 under agency 7505. The record covers the last 10 years and includes 21 award actions totaling $37,511,391.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligated amounts are shown in both readable and exact formats, and the average action value is $1,786,256.71.

Agency ID
7505
PIID
75A50119D00018
Type
Vehicle
Total Obligated
37.51 million
37,511,391.00
Actions
21
Average Action Value
1,786,256.71

Overview

The procurement record for vehicle number 75A50119D00018 shows 21 award actions in the last 10 years. Total obligated funding is $37,511,391, with an average action value of $1,786,256.71.

How to use this page

Use this page to review the obligation pattern and action count tied to PIID 75A50119D00018. The figures provide a concise summary of award activity for agency 7505 without adding interpretation beyond the reported totals.

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 = '75A50119D00018'
    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
7505 OFFICE OF ASSISTANT SECRETARY FOR PREPAREDNESS AND RESPONSE 37,511,391.00 37.51 million 13
7505 ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE 0.00 0.00 8

Insight

Over the 10-year window, obligations tied to PIID 75A50119D00018 are concentrated in the Office of Assistant Secretary for Preparedness and Response, which accounts for $37.51 million across 13 awards. The Administration for Strategic Preparedness and Response has 8 awards but no obligated value recorded, indicating activity with no associated funding in the provided data. Overall, the vehicle’s obligated value is highly concentrated in one agency line, with award count not matching dollar distribution.

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 = '75A50119D00018'
        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 = '7505' AND content__IDV__contractID__IDVID__PIID = '75A50119D00018'
    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
541714 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) 37,511,391.00 37.51 million 21

Insight

Over the 10-year window, obligations for vehicle PIID 75A50119D00018 are fully concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology). This category accounts for $37.51 million across 21 awards, indicating a single-line of effort rather than a diversified NAICS mix. The pattern suggests sustained procurement activity within a specialized biotechnology R&D scope.

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 = '75A50119D00018'
    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
AN13 HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT 21,007,192.00 21.01 million 19
AN13 R&D- MEDICAL: BIOMEDICAL (ADVANCED DEVELOPMENT) 16,504,199.00 16.50 million 2

Insight

Obligations on this vehicle are heavily concentrated in PSC AN13, which appears in both provided rows and accounts for the full listed activity. The largest category, “HEALTH R&D SERVICES; HEALTH CARE SERVICES; EXPERIMENTAL DEVELOPMENT,” totals $21.01 million across 19 awards, indicating relatively broad distribution. A second AN13 entry for “R&D- MEDICAL: BIOMEDICAL (ADVANCED DEVELOPMENT)” adds $16.50 million across only 2 awards, suggesting a much more concentrated funding pattern within the same PSC family.

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 = '75A50119D00018'
    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
2019 16,504,199.00 16.50 million 1
2020 12,978,434.00 12.98 million 2
2021 0.00 0.00 2
2022 8,028,758.00 8.03 million 6
2023 0.00 0.00 2
2024 0.00 0.00 4
2025 0.00 0.00 4

Insight

Obligations for PIID 75A50119D00018 are concentrated in the early years of the period, with 16.50 million in 2019 and 12.98 million in 2020, followed by a lower level of 8.03 million in 2022. Award activity continues in later years, but obligations are recorded as zero in 2021, 2023, 2024, and 2025 despite multiple awards in each of those years. This pattern indicates intermittent award action with no corresponding obligated funding in several years, suggesting a highly uneven annual distribution over the 10-year 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.