This page summarizes federal award activity for PIID HQ085621C0001 during the last 5 years. The record shows 84 award actions and total obligated amount of 4.57 billion.
Award Number
Award Number 9700 / HQ085621C0001 Federal Contract Action Summary (Last 5 Years)
Procurement profile for award number HQ085621C0001 under agency ID 9700, showing obligations and action history over the last 5 years.
Financial totals are based on the exact obligated amount of 4573507771.45 and an average action value of 54446521.09.
Overview
Award number HQ085621C0001 is associated with agency ID 9700 and shows obligation activity across the last 5 years. The award totals 4,573,507,771.45 in obligated dollars across 84 actions, for an average action value of 54,446,521.09. These figures provide a concise view of the scale and frequency of recorded award actions.
How to use this page
Use this page to review the award-level funding history and action count for HQ085621C0001. The data can help with procurement tracking, award lookup, and high-level analysis of obligation patterns over the analysis window.
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 = 'HQ085621C0001'
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) | 4,573,507,771.45 | 4.57 billion | 83 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID HQ085621C0001 are highly concentrated within the Missile Defense Agency (MDA), which accounts for $4.57 billion across 83 awards over the 5-year window. The Defense Contract Management Agency (DCMA) appears only once and carries no obligated dollars. This distribution indicates that nearly all funding activity associated with this award is tied to MDA, with DCMA present only as a minimal administrative or transactional participant.
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 = 'HQ085621C0001'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 5D177 | 4,573,507,771.45 | 4.57 billion | 84 |
Insight
Over the 5-year window, obligations for award HQ085621C0001 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 5D177). The vendor accounts for $4.57 billion across 84 awards, indicating a sustained, high-volume award relationship rather than a broadly distributed vendor base. This level of concentration suggests the award activity is heavily dependent on one prime contractor.
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 = 'HQ085621C0001'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 4,573,507,771.45 | 4.57 billion | 84 |
Insight
Over the 5-year window, award PIID HQ085621C0001 is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This NAICS accounts for $4.57 billion across 84 awards, indicating a highly focused contracting profile with no observed distribution across other NAICS codes in the provided data.
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 = 'HQ085621C0001'
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 |
|---|---|---|---|---|
| AC13 | NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; EXPERIMENTAL DEVELOPMENT | 4,573,507,771.45 | 4.57 billion | 84 |
Insight
Over the 5-year window, obligations for award HQ085621C0001 are entirely concentrated in PSC AC13, National Defense R&D Services—Department of Defense - Military—Experimental Development. The award records 84 actions under this PSC, totaling $4.57 billion, indicating a highly focused procurement profile with no distribution across additional PSCs in the provided data. This concentration suggests the award is driven by a single R&D services requirement rather than a diversified mix of product or service categories.
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 = 'HQ085621C0001'
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 | 342,502,798.18 | 342.50 million | 12 |
| 2022 | 684,462,305.13 | 684.46 million | 15 |
| 2023 | 1,106,690,978.01 | 1.11 billion | 16 |
| 2024 | 1,054,079,126.83 | 1.05 billion | 21 |
| 2025 | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
Obligations for PIID HQ085621C0001 increased sharply over the 5-year window, rising from $342.50 million in 2021 to $1.39 billion in 2025, with the largest annual jump occurring between 2021 and 2023. Award activity also expanded from 12 awards in 2021 to 20 or 21 awards in later years, indicating both higher funding levels and a broader distribution of obligations across more awards. The pattern suggests sustained concentration at a high obligation level from 2023 onward, rather than a one-time spike.
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.