Award Number

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

Federal procurement summary for award number HQ086220C0002 under agency 9700, covering the last full year of obligation activity.

This page summarizes award number HQ086220C0002 for agency 9700 using last full year data. The award shows 10 actions with total obligated amount of 184.01 thousand.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown as provided, with a readable total of 184.01 thousand and an exact total obligated value of 184011.2.

Agency ID
9700
PIID
HQ086220C0002
Type
Award
Total Obligated
184.01 thousand
184,011.20
Actions
10
Average Action Value
18,401.12

Overview

Award number HQ086220C0002 is the procurement record identified for agency 9700 in the last full year analysis window. The award has 10 recorded actions, with total obligated funds of 184011.2 and an average action value of 18401.12. These figures provide a compact view of obligation activity associated with the award.

How to use this page

Use this page to review the award-level obligation total and the number of actions recorded during the analysis window. The data supports basic procurement review, including activity volume and average action size, without adding interpretation beyond the provided values.

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 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) 184,011.20 184.01 thousand 10

Insight

Over the past 1 year, obligations under PIID HQ086220C0002 are fully concentrated with the Missile Defense Agency (MDA), agency ID 97JC. MDA accounts for 10 awards totaling 184.01 thousand in obligated dollars, indicating a single-agency distribution with no other agencies represented in the provided data. This pattern suggests the award activity is narrowly scoped within one 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 = '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 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
RAYTHEON COMPANY 3W1D7 184,011.20 184.01 thousand 10

Insight

Obligations under PIID HQ086220C0002 in the past year are concentrated with a single vendor, RAYTHEON COMPANY (CAGE 3W1D7). This vendor accounts for all reported obligations in the provided rows, with 10 awards totaling $184.01 thousand, indicating a fully concentrated distribution within the observed set.

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 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 184,011.20 184.01 thousand 10

Insight

Over the last 1 year, obligations for PIID HQ086220C0002 under Agency 9700 were concentrated entirely in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This category accounted for $184.01 thousand across 10 awards, indicating a narrow spend profile within the observed window. No other NAICS codes are present in the provided data, so no broader distribution pattern can be assessed.

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 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
5840 RADAR EQUIPMENT, EXCEPT AIRBORNE 184,011.20 184.01 thousand 10

Insight

Obligations for PIID HQ086220C0002 are fully concentrated in PSC 5840, Radar Equipment, Except Airborne, with $184.01 thousand across 10 awards in the 1-year window. This indicates a narrow product mix and suggests procurement activity was focused on a single equipment category rather than spread across multiple PSCs.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 184,011.20 184.01 thousand 10

Insight

In the 1-year window, FY2025 shows $184.01 thousand in total obligations across 10 awards for PIID HQ086220C0002 under agency 9700. Obligations are concentrated in a single year in the provided data, with activity distributed across multiple awards rather than a single award action. This pattern indicates continued transactional activity in FY2025, but no multi-year trend can be assessed from the rows provided.

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.