This page summarizes award HQ086220C0002 and its obligation history for agency ID 9700 during the last 5 years. The award shows 38 actions with total obligations of $225.18 million.
Award Number
Award Number 9700 / HQ086220C0002 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award HQ086220C0002 under agency ID 9700, covering obligation activity over the last 5 years.
Total obligated is shown as $225,176,195.42, with an average action value of $5,925,689.35 across 38 actions.
Overview
Award HQ086220C0002 is associated with agency ID 9700 and records 38 actions in the last 5 years. Total obligations across the analysis window equal $225,176,195.42, which is about $225.18 million. The average action value is $5,925,689.35.
How to use this page
Use this page to review the obligation pattern tied to award HQ086220C0002 over the last 5 years. The action count and obligated totals provide a compact view of activity, while the exact dollar figure supports record-level comparison and analysis.
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 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) | 225,176,195.42 | 225.18 million | 38 |
Insight
Over the 5-year window, obligation activity for PIID HQ086220C0002 is concentrated in a single top agency, the Missile Defense Agency (97JC), which accounts for $225.18 million across 38 awards. This indicates a focused distribution of obligations rather than broad agency dispersion. The volume of awards suggests repeated procurement activity within the same agency relationship.
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 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 | 3W1D7 | 225,176,195.42 | 225.18 million | 38 |
Insight
Over the 5-year window, obligations for PIID HQ086220C0002 are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 3W1D7). The vendor received 38 awards totaling $225.18 million, indicating a complete, high-dollar reliance on one contractor for this award. This pattern suggests limited vendor distribution and a strong concentration of obligated spending with one source.
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 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 |
|---|---|---|---|---|
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 225,176,195.42 | 225.18 million | 38 |
Insight
Over the 5-year window for award HQ086220C0002, obligations are fully concentrated in NAICS 334511, with $225.18 million across 38 awards. This indicates a highly focused procurement pattern in search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing. No other NAICS codes are represented in the provided rows, so there is no evidence of diversification across industry classifications in this dataset.
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 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 |
|---|---|---|---|---|
| 5840 | RADAR EQUIPMENT, EXCEPT AIRBORNE | 225,176,195.42 | 225.18 million | 38 |
Insight
Over the 5-year window, obligations for award HQ086220C0002 are concentrated entirely in PSC 5840, RADAR EQUIPMENT, EXCEPT AIRBORNE, totaling $225.18 million across 38 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The recurring award activity suggests sustained requirement for this equipment category rather than a one-time obligation event.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 were highly concentrated in 2021, when $173.08 million accounted for the clear peak over the 5-year window. Funding then dropped sharply in 2022 and remained materially lower in 2023 and 2024, with a modest increase in award counts in 2024 despite lower obligated dollars. In 2025, obligations were minimal at $184.01 thousand, indicating a pronounced decline in annual funding intensity relative to 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.