This page summarizes procurement activity for award number HQ086220C0002 across the last 10 years. The award shows 44 actions and total obligated amount of 2.73 billion.
Award Number
Award Number 9700 / HQ086220C0002 Federal Contract Action Summary (Last 10 Years)
Federal award page for award number HQ086220C0002 under agency ID 9700, covering obligations and actions in the last 10 years.
Total obligated is 2,732,984,085.42 and average action value is 62,113,274.67 for the analysis window shown.
Overview
Award number HQ086220C0002 is the primary identifier for this federal procurement record under agency ID 9700. Over the last 10 years, the award accumulated 44 actions and 2,732,984,085.42 in total obligations, with an average action value of 62,113,274.67. These figures reflect the activity captured in the analysis window only.
How to use this page
Use this page to review the award's obligation history and action volume at a glance. The totals and averages provide a compact way to compare this award with other procurement records within the same agency or time period.
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 = 'HQ086220C0002'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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) | 2,732,984,085.42 | 2.73 billion | 44 |
Insight
Obligations for PIID HQ086220C0002 are concentrated in a single top agency: the Missile Defense Agency (97JC), which accounts for $2.73 billion across 44 awards over the 10-year window. This indicates a strong concentration of obligated dollars within one agency relationship rather than broad distribution across multiple agencies. The award count suggests repeated activity with this agency, supporting a sustained funding pattern tied to the same procurement action.
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 = 'HQ086220C0002'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 3W1D7 | 2,732,984,085.42 | 2.73 billion | 44 |
Insight
Over the 10-year window, obligations on award HQ086220C0002 are fully concentrated with RAYTHEON COMPANY (CAGE 3W1D7). The vendor received 44 awards totaling $2.73 billion, indicating a highly concentrated vendor profile with no distribution across additional vendors in the provided data. This level of concentration suggests sustained reliance on a single contractor for this award lineage.
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 = 'HQ086220C0002'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 2,732,984,085.42 | 2.73 billion | 44 |
Insight
Obligations for PIID HQ086220C0002 under agency 9700 are fully concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. Over the 10-year window, this NAICS accounts for $2.73 billion across 44 awards, indicating a highly concentrated award profile with no diversification across other NAICS codes in the provided data. This concentration suggests the award activity is consistently tied to a single specialized manufacturing category.
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 = 'HQ086220C0002'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| 5840 | RADAR EQUIPMENT, EXCEPT AIRBORNE | 2,732,984,085.42 | 2.73 billion | 44 |
Insight
Over the 10-year window, obligations for award HQ086220C0002 are fully concentrated in PSC 5840, Radar Equipment, except airborne, with $2.73 billion obligated across 44 awards. This indicates a highly focused procurement profile rather than a diversified PSC mix. The volume of awards suggests repeated contracting activity within the same product/service category over time.
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 = 'HQ086220C0002'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2020 | 2,507,807,890.00 | 2.51 billion | 6 |
| 2021 | 173,078,311.11 | 173.08 million | 5 |
| 2022 | 7,440,561.87 | 7.44 million | 6 |
| 2023 | 24,931,740.27 | 24.93 million | 4 |
| 2024 | 19,541,570.97 | 19.54 million | 13 |
| 2025 | 184,011.20 | 184.01 thousand | 10 |
Insight
Obligations for PIID HQ086220C0002 are heavily concentrated in 2020, when $2.51 billion accounted for the clear peak across the 10-year window. Funding then declined sharply to $173.08 million in 2021 and fell further to single-digit millions in 2022, followed by a modest rebound in 2023 and 2024 to $24.93 million and $19.54 million, respectively. Award counts remained relatively low but became more frequent in 2024 and 2025, suggesting smaller, more numerous obligations after the 2020 peak.
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.