Vehicle Number

Vehicle Number 7001 / HSHQDC15C00064 Federal Contract Action Summary (Last 10 Years)

Vehicle number record for Agency 7001 tied to PIID HSHQDC15C00064, summarizing award activity over the last 10 years.

This page presents procurement activity for the vehicle number associated with PIID HSHQDC15C00064 within Agency 7001. Over the last 10 years, the record shows 89 award actions and total obligations of 329.07 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the last 10 years of award actions; total obligated exact is 329070533.97 and average action value is 3697421.73.

Agency ID
7001
PIID
HSHQDC15C00064
Type
Vehicle
Total Obligated
329.07 million
329,070,533.97
Actions
89
Average Action Value
3,697,421.73

Overview

The vehicle number record for PIID HSHQDC15C00064 covers 89 award actions in the last 10 years. Total obligated spending is 329,070,533.97, with an average action value of 3,697,421.73. This page is intended to support review of award volume and obligation levels tied to this identifier.

How to use this page

Use this page to review the procurement history associated with the vehicle number and to compare action counts and obligations over time. The figures provide a concise view of award activity for Agency 7001 under PIID HSHQDC15C00064.

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 = '7001' AND content__IDV__contractID__IDVID__PIID = 'HSHQDC15C00064'
    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
7001 OFFICE OF PROCUREMENT OPERATIONS 329,070,533.97 329.07 million 89

Insight

Within the 10-year window for PIID HSHQDC15C00064, all reported obligation is concentrated in a single top agency: OFFICE OF PROCUREMENT OPERATIONS (agency ID 7001). This entity accounts for $329.07 million across 89 awards, indicating a sustained and highly concentrated obligation pattern rather than a broadly distributed agency footprint.

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 = '7001' AND content__IDV__contractID__IDVID__PIID = 'HSHQDC15C00064'
        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 = '7001' AND content__IDV__contractID__IDVID__PIID = 'HSHQDC15C00064'
    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
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY 329,070,533.97 329.07 million 89

Insight

Over the 10-year window, obligations for PIID HSHQDC15C00064 are fully concentrated in NAICS 541711, Research and Development in Biotechnology. This NAICS accounts for $329.07 million across 89 awards, indicating sustained activity in a single research and development category rather than a diversified obligation profile. The absence of additional NAICS rows suggests no measurable distribution across other sectors within the reported period.

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 = '7001' AND content__IDV__contractID__IDVID__PIID = 'HSHQDC15C00064'
    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
AZ11 R&D- OTHER RESEARCH AND DEVELOPMENT (BASIC RESEARCH) 329,070,533.97 329.07 million 89

Insight

Over the 10-year window, obligations for this vehicle are concentrated entirely in PSC AZ11, R&D - Other Research and Development (Basic Research). The category accounts for the full $329.07 million across 89 awards, indicating a highly focused procurement profile with no observed diversification across other PSCs in the provided data. This concentration suggests the vehicle has been used consistently for a single research-oriented requirement set.

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 = '7001' AND content__IDV__contractID__IDVID__PIID = 'HSHQDC15C00064'
    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
2016 27,419,865.25 27.42 million 14
2017 31,701,717.24 31.70 million 14
2018 27,640,095.61 27.64 million 12
2019 34,523,683.97 34.52 million 7
2020 34,731,802.27 34.73 million 8
2021 32,995,463.06 33.00 million 7
2022 33,362,903.04 33.36 million 5
2023 34,311,909.20 34.31 million 7
2024 34,112,225.12 34.11 million 5
2025 38,270,869.21 38.27 million 10

Insight

Obligations for PIID HSHQDC15C00064 are relatively stable across the 10-year window, ranging from $27.42 million in 2016 to $38.27 million in 2025. Annual award volume is concentrated in a narrow band after 2018, with most years recording 5 to 10 awards, compared with 12 to 14 awards in 2016–2018. The most recent year, 2025, reflects the highest obligated amount and a higher award count than prior years, indicating a modest uptick in 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.