Award Number

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

FPDS award page for PIID HQ085120C0002 under agency 9700, summarizing obligations and award actions for the last full year.

This award record shows total obligated spending of 3.90 million across 62 actions in the last full year. The average action value was 62,961.6, based on an exact total obligation of 3,903,619.21.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the provided analysis window and may differ from later updates or adjustments in FPDS.

Agency ID
9700
PIID
HQ085120C0002
Type
Award
Total Obligated
3.90 million
3,903,619.21
Actions
62
Average Action Value
62,961.60

Overview

The award record for PIID HQ085120C0002 shows 3,903,619.21 in total obligated funding during the last full year. Across 62 award actions, the average action value was 62,961.6. This page presents the award at the entity level for agency ID 9700.

How to use this page

Use this page to review the award’s obligation volume and action count for the selected period. The data can support procurement tracking, contract review, and comparisons with other award records in agency ID 9700.

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 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) 3,903,619.21 3.90 million 43
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 19

Insight

Over the past year, obligations for PIID HQ085120C0002 are concentrated in the Missile Defense Agency (MDA), which accounts for $3.90 million across 43 awards. The Defense Contract Management Agency (DCMA) appears as a secondary recipient in terms of award count, with 19 awards but no recorded obligations. This indicates activity is distributed across two agencies, but funded obligation is highly concentrated in MDA.

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 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 15090 3,903,619.21 3.90 million 62

Insight

RAYTHEON COMPANY is the sole top vendor associated with this award in the 1-year window, accounting for $3.90 million across 62 awards. This indicates a highly concentrated vendor distribution, with all identified obligated value in the provided rows attributed to a single contractor. The volume of awards suggests repeated procurement activity with the same vendor rather than diversification across multiple suppliers.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 3,903,619.21 3.90 million 62

Insight

Over the past 1 year, obligations for award HQ085120C0002 under agency 9700 are concentrated entirely in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This single NAICS accounts for $3.90 million across 62 awards, indicating a highly focused procurement profile within the observed window. No other NAICS codes are represented in the provided data, so distribution is fully concentrated in this 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 = 'HQ085120C0002'
    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
1410 GUIDED MISSILES 3,903,619.21 3.90 million 62

Insight

Within the 1-year window for award HQ085120C0002, obligations are fully concentrated in PSC 1410, Guided Missiles. The single PSC category accounts for $3.90 million across 62 awards, indicating a narrow product mix and repeated obligation activity in the same supply category. No other PSC codes appear in the provided rows, so this section reflects complete concentration in one PSC.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 3,903,619.21 3.90 million 62

Insight

Within the 1-year window, obligations for award HQ085120C0002 are concentrated entirely in FY 2025, totaling $3.90 million across 62 awards/actions. This indicates all recorded obligation activity in the period occurred in a single fiscal year, with no multi-year distribution evident in the provided data. The volume suggests repeated award activity in FY 2025 rather than a one-time obligation event.

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.