Award Number

Award Number 9700 / HQ085120C0002 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number HQ085120C0002 under agency ID 9700, summarizing last-5-year obligation and action activity.

This page summarizes FPDS activity for award number HQ085120C0002 tied to agency ID 9700 over the last 5 years. The award shows 177 actions and total obligations of $1.085 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated is shown as $1,085,092,492.76, with an average action value of $6,130,466.06 across 177 recorded actions.

Agency ID
9700
PIID
HQ085120C0002
Type
Award
Total Obligated
1.09 billion
1,085,092,492.76
Actions
177
Average Action Value
6,130,466.06

Overview

Award number HQ085120C0002 is associated with agency ID 9700 and shows activity within the last 5 years. The award records 177 actions and $1,085,092,492.76 in total obligations, which is about $1.09 billion.

How to use this page

Use this page to review the award-level FPDS record for HQ085120C0002 and to track obligation volume over the selected analysis window. The average action value is $6,130,466.06, which provides a simple reference point for comparing action size within this record.

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 = 'HQ085120C0002'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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) 1,085,092,492.76 1.09 billion 111
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 66

Insight

Obligations for PIID HQ085120C0002 are highly concentrated within the Missile Defense Agency (MDA), which accounts for $1.09 billion across 111 awards in the 5-year window. The Defense Contract Management Agency (DCMA) appears with 66 awards but no obligated dollars, indicating administrative or oversight activity rather than funding concentration. Overall, the award history is weighted heavily toward MDA, with obligated value not broadly distributed across the listed 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 = 'HQ085120C0002'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
RAYTHEON COMPANY 15090 1,085,092,492.76 1.09 billion 177

Insight

RAYTHEON COMPANY is the sole top vendor associated with this award in the 5-year window, accounting for 100% of the listed obligated amount. The vendor received 177 awards totaling $1.09 billion, indicating a highly concentrated obligation pattern rather than a distributed vendor base. This concentration suggests sustained reliance on a single contractor for this PIID over the period reviewed.

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 = 'HQ085120C0002'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,085,092,492.76 1.09 billion 177

Insight

Over the 5-year window, obligations for award HQ085120C0002 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $1.09 billion obligated across 177 awards. This indicates a highly focused procurement profile centered on a single industrial classification, with no evidence in the provided data of material diversification across other NAICS codes.

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 = 'HQ085120C0002'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
1410 GUIDED MISSILES 1,085,092,492.76 1.09 billion 177

Insight

Obligations on this award are fully concentrated in PSC 1410, Guided Missiles, totaling $1.09 billion across 177 awards over the 5-year window. This indicates a narrow procurement profile centered on a single product category rather than a diversified spend mix. The volume of awards alongside the high obligated amount suggests repeated action within the same PSC rather than broad category dispersion.

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 = 'HQ085120C0002'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 376,205,044.00 376.21 million 12
2022 452,175,582.87 452.18 million 33
2023 252,054,303.68 252.05 million 43
2024 753,943.00 753.94 thousand 27
2025 3,903,619.21 3.90 million 62

Insight

Obligations were heavily concentrated in 2021 through 2023, peaking in 2022 at $452.18 million across 33 awards after $376.21 million in 2021 and then declining to $252.05 million in 2023 despite a higher award count of 43. Funding dropped sharply in 2024 to $753.94 thousand, indicating a major reduction in obligated value. In 2025, obligations increased to $3.90 million with 62 awards, suggesting a return in transaction volume but at a much lower dollar level than the earlier years.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.