Award Number

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

Federal procurement award page for award number HQ085124C0001 under agency ID 9700, summarizing last full year obligation activity.

This award page covers HQ085124C0001 for agency ID 9700 over the last full year. The award recorded 40 actions and $769,530,726.15 in total obligations, with an average action value of $19,238,268.15.

Generated at 03/20/2026

Analysis period: Last full year

Obligation figures reflect the provided analysis window and may differ from rounded display values.

Agency ID
9700
PIID
HQ085124C0001
Type
Award
Total Obligated
769.53 million
769,530,726.15
Actions
40
Average Action Value
19,238,268.15

Overview

The award number HQ085124C0001 is associated with agency ID 9700 in the last full year analysis window. Total obligated value is $769,530,726.15 across 40 award actions, yielding an average action value of $19,238,268.15. This page presents the award-level obligation summary for that period.

How to use this page

Use this page to review obligation activity tied to award number HQ085124C0001 for agency ID 9700. The figures support basic award-level analysis, including total obligated amount, action count, and average action value over the last full year.

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 = 'HQ085124C0001'
    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) 769,530,726.15 769.53 million 30
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 10

Insight

Obligations are highly concentrated with the Missile Defense Agency (MDA), which accounts for $769.53 million across 30 awards in the 1-year window. The Defense Contract Management Agency (DCMA) appears only as a lower-volume counterpart, with 10 awards but no obligated dollars recorded. This distribution indicates that funded activity under PIID HQ085124C0001 is dominated by MDA, while DCMA involvement is limited to non-obligated award actions.

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 = 'HQ085124C0001'
        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 769,530,726.15 769.53 million 40

Insight

RAYTHEON COMPANY accounts for the full top-vendor obligation profile for this award over the 1-year window, with $769.53 million across 40 awards. This indicates a highly concentrated vendor distribution, with all reported obligations in the provided rows attributable to a single contractor. The award pattern suggests sustained reliance on one vendor rather than a diversified obligation base.

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 = 'HQ085124C0001'
    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 769,530,726.15 769.53 million 40

Insight

Over the 1-year window, obligations for award HQ085124C0001 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This code accounts for $769.53 million across 40 awards, indicating a highly focused procurement profile with no other NAICS categories reflected in the provided data. The concentration suggests the award activity is driven entirely by this industrial base within the observed period.

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 = 'HQ085124C0001'
    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 769,530,726.15 769.53 million 40

Insight

Obligations for award HQ085124C0001 in the past year are fully concentrated in PSC 1410, Guided Missiles. The award includes 40 actions totaling $769.53 million, indicating a high degree of product-line concentration rather than a diversified PSC mix.

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 = 'HQ085124C0001'
    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 769,530,726.15 769.53 million 40

Insight

In the 1-year window, award HQ085124C0001 recorded $769.53 million in total obligated value in FY 2025 across 40 awards. Obligation is highly concentrated in a single year, with all reported activity occurring in 2025. The average obligated value per award is approximately $19.2 million, indicating a relatively large-dollar distribution across the award set.

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.