This page covers award number HQ085621C0001 for agency 9700 during the last full year. The award shows 20 actions and total obligated funds of 1,385,772,563.3, with an average action value of 69,288,628.17.
Award Number
Award Number 9700 / HQ085621C0001 Federal Contract Action Summary (Last Year)
Award number HQ085621C0001 for agency 9700 summarizes contract action activity over the last full year, with total obligated amounts and action counts for this award record.
Amounts reflect the analysis window for the last full year and are shown as both readable and exact totals.
Overview
The award record for HQ085621C0001 is tied to agency 9700 and includes 20 award actions in the last full year. Total obligated value reached 1.39 billion, with an exact total of 1,385,772,563.3 and an average action value of 69,288,628.17.
How to use this page
Use this page to review award-level obligation activity for HQ085621C0001 within the selected one-year window. The figures support quick comparison of action volume and average obligation size without adding details beyond the recorded totals.
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 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) | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
Within the 1-year window for award HQ085621C0001, obligations are fully concentrated with MISSILE DEFENSE AGENCY (MDA), which accounts for $1.39 billion across 20 awards. This indicates a highly concentrated agency distribution with no other agencies represented in the provided data. The award activity suggests sustained funding and execution under a single 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 = '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 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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 5D177 | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
LOCKHEED MARTIN CORPORATION is the sole top vendor listed for this award over the 1-year window, accounting for $1.39 billion across 20 awards. This indicates a high concentration of obligated dollars with a single contractor, rather than a broad vendor distribution. The volume of awards suggests continued transaction activity, but obligations remain concentrated with one vendor.
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 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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
Over the 1-year window for award HQ085621C0001, obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $1.39 billion across 20 awards, indicating a highly focused obligation profile with no diversification 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 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 |
|---|---|---|---|---|
| AC13 | NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; EXPERIMENTAL DEVELOPMENT | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
Over the past 1 year, obligations for award HQ085621C0001 are fully concentrated in PSC AC13, with $1.39 billion across 20 awards. This indicates a highly focused procurement profile with all reported funding in National Defense R&D Services, Experimental Development. The distribution suggests no PSC diversification within the provided period and points to a single dominant service category driving obligations.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 1,385,772,563.30 | 1.39 billion | 20 |
Insight
For PIID HQ085621C0001 under Agency 9700, the 1-year annual trend shows $1.39 billion obligated in 2025 across 20 awards. Obligations are highly concentrated in a single year within the review window, indicating all recorded activity is contained in 2025. The 20 awards suggest the funding was distributed across multiple award actions rather than a single 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.