Award Number

Award Number 9700 / HQ014719C0004 Federal Contract Action Summary (Last Year)

Award number HQ014719C0004 for agency 9700 shows 17 actions in the last full year with $47.24 million obligated.

This page summarizes award number HQ014719C0004 for agency ID 9700 over the last full year. The award shows total obligations of $47,235,528.20 across 17 actions, for an average action value of $2,778,560.48.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures reflect the reported total obligated exact amount of 47235528.2 and the readable rounded value of 47.24 million.

Agency ID
9700
PIID
HQ014719C0004
Type
Award
Total Obligated
47.24 million
47,235,528.20
Actions
17
Average Action Value
2,778,560.48

Overview

For the last full year, award number HQ014719C0004 under agency ID 9700 recorded 17 award actions. Total obligated funding was $47,235,528.20, with an average action value of $2,778,560.48.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for HQ014719C0004. It provides a concise starting point for comparing this award against other agency 9700 awards in the same analysis window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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
97JC MISSILE DEFENSE AGENCY (MDA) 47,235,528.20 47.24 million 17

Insight

Over the past year, obligations for PIID HQ014719C0004 are concentrated entirely with the Missile Defense Agency (MDA), agency 97JC. MDA accounts for 17 awards totaling $47.24 million, indicating a fully concentrated award distribution within the provided results. This pattern suggests the contract activity is narrowly scoped to a single agency rather than dispersed 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__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
BOEING COMPANY, THE 3A768 47,235,528.20 47.24 million 17

Insight

Obligations for PIID HQ014719C0004 in the 1-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 3A768). That vendor received $47.24 million across 17 awards, indicating repeated funding to the same contractor rather than a dispersed vendor base. This pattern suggests a high degree of vendor concentration for the award.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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) 47,235,528.20 47.24 million 17

Insight

Within the 1-year window for award HQ014719C0004, obligations are fully concentrated in NAICS 541714, Research and Development in Biotechnology (except Nanobiotechnology). This category accounts for $47.24 million across 17 awards, indicating a single-industry funding profile with no diversification across additional NAICS codes in the provided data. The concentration suggests the award activity is focused on biotechnology R&D rather than a broad mix of procurement goods or services.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
1420 GUIDED MISSILE COMPONENTS 47,235,528.20 47.24 million 17

Insight

Obligations for this award are fully concentrated in PSC 1420, Guided Missile Components, totaling $47.24 million across 17 awards/actions in the 1-year window. This indicates a narrow procurement profile with spending focused in a single product service category. The count suggests multiple transactions, but no distribution across additional PSCs is present in the provided data.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HQ014719C0004'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 47,235,528.20 47.24 million 17

Insight

Over the 1-year window, obligations for PIID HQ014719C0004 are concentrated entirely in FY2025, with $47.24 million obligated across 17 awards/actions. This indicates a single-year funding profile with no visible multi-year distribution in the provided data. The average obligated value per row is about $2.78 million, suggesting obligations were spread across a moderate number of entries rather than being confined to one isolated transaction.

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.