Award Number

Award Number 9700 / 0008 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number 0008 under agency 9700, summarizing five years of obligated action history.

This page summarizes award 0008 for agency 9700 over the last 5 years. The award shows 1,199 actions with total obligations of $478.35 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the analysis window provided and the exact obligated amount of $478,345,115.51.

Agency ID
9700
PIID
0008
Type
Award
Total Obligated
478.35 million
478,345,115.51
Actions
1,199
Average Action Value
398,953.39

Overview

Award 0008 for agency 9700 accounts for $478,345,115.51 in total obligated value across 1,199 award actions in the last 5 years. The average action value is $398,953.39, which provides a basic measure of the scale of activity in this award record.

How to use this page

Use this page to review the award-level obligation history for PIID 0008 within the selected five-year window. The totals and action count support a quick assessment of how much activity has flowed through the award and how it is distributed across actions.

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 = '0008'
    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
2100 DEPT OF THE ARMY 444,797,037.49 444.80 million 538
5700 DEPT OF THE AIR FORCE 64,700,980.78 64.70 million 142
97BZ DEFENSE FINANCE AND ACCOUNTING SERVICE (DFAS) -483.18 -483.18 1
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) -36,597.08 -36.60 thousand 6
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -36,842.71 -36.84 thousand 1
97DH DEFENSE HEALTH AGENCY (DHA) -537,519.00 -537.52 thousand 5
97AS DEFENSE LOGISTICS AGENCY -562,014.84 -562.01 thousand 35
9776 USTRANSCOM -715,174.35 -715.17 thousand 5
97JC MISSILE DEFENSE AGENCY (MDA) -1,098,405.57 -1.10 million 30
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) -1,404,325.16 -1.40 million 10

Insight

Within the 5-year window for PIID 0008, obligations are heavily concentrated at the DEPT OF THE ARMY, which accounts for $444.80 million across 538 awards. The DEPT OF THE AIR FORCE is a distant second with $64.70 million across 142 awards, indicating a strong concentration of spend in two agencies and a much smaller distribution across others. The remaining listed agencies show comparatively minor activity and are mostly negative obligations, with the largest reversals at WHS (-$1.40 million) and MDA (-$1.10 million), suggesting deobligations or adjustments rather than substantive new funding.

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 = '0008'
        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
BAE SYSTEMS ORDNANCE SYSTEMS INC. 6NDQ0 406,037,118.62 406.04 million 27
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 64,512,426.41 64.51 million 79
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 22,471,571.44 22.47 million 97
SIEMENS GOVERNMENT SERVICES, INC. 0DZG1 15,007,870.72 15.01 million 22
FEDITC LLC 3H6B1 8,791,229.12 8.79 million 17
UNIVERSITY OF SOUTHERN CALIFORNIA 1B729 7,909,634.69 7.91 million 14
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 6,638,712.74 6.64 million 16
PEPCO GOVT SERVICES 1NQK3 6,210,608.55 6.21 million 27
GC&E SYSTEMS GROUP, INC. 1MPR9 5,419,701.83 5.42 million 16
HONEYWELL INTERNATIONAL INC. 40931 3,048,045.20 3.05 million 9

Insight

Over the 5-year window, obligations under PIID 0008 are concentrated in BAE SYSTEMS ORDNANCE SYSTEMS INC., which received 406.04 million across 27 awards and far exceeds every other vendor listed. The remaining obligations are distributed across a mix of academic, engineering, and services firms, with Massachusetts Institute of Technology next at 64.51 million across 79 awards and Intuitive Research and Technology Corporation at 22.47 million across 97 awards. Several vendors show relatively high award counts but lower obligated amounts, indicating smaller, more frequent awards rather than a few large obligations.

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 = '0008'
    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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 406,248,037.69 406.25 million 32
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 91,312,833.24 91.31 million 277
541330 ENGINEERING SERVICES 15,246,714.42 15.25 million 269
561210 FACILITIES SUPPORT SERVICES 5,710,998.60 5.71 million 34
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 5,619,356.47 5.62 million 36
517110 WIRED TELECOMMUNICATIONS CARRIERS 5,419,701.83 5.42 million 16
237120 OIL AND GAS PIPELINE AND RELATED STRUCTURES CONSTRUCTION 644,140.57 644.14 thousand 3
511210 SOFTWARE PUBLISHERS 582,065.87 582.07 thousand 7
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY 339,169.43 339.17 thousand 12
517919 ALL OTHER TELECOMMUNICATIONS 230,484.24 230.48 thousand 12

Insight

Obligations under PIID 0008 are highly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for $406.25 million across 32 awards and dominates the 5-year profile. A second tier of activity is centered on R&D and engineering services, led by NAICS 541712 with $91.31 million over 277 awards and NAICS 541330 with $15.25 million over 269 awards, indicating substantial award volume but much lower dollar values per action. The remaining NAICS codes each represent comparatively small obligation amounts, with only limited activity in facilities support, consulting, telecommunications, construction, software, and biotechnology-related categories.

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 = '0008'
    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
1376 BULK EXPLOSIVES 406,037,118.62 406.04 million 27
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 63,819,489.19 63.82 million 85
AZ11 R&D- OTHER RESEARCH AND DEVELOPMENT (BASIC RESEARCH) 8,254,975.63 8.25 million 25
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 7,167,295.37 7.17 million 48
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 6,638,712.74 6.64 million 16
AG83 R&D- ENERGY: CONSERVATION (ADVANCED DEVELOPMENT) 6,210,608.55 6.21 million 27
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 5,458,369.20 5.46 million 24
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 5,399,332.52 5.40 million 275
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 1,807,254.34 1.81 million 31
Y1PZ CONSTRUCTION OF OTHER NON-BUILDING FACILITIES 644,140.57 644.14 thousand 3

Insight

Obligations are highly concentrated in PSC 1376 Bulk Explosives, which accounts for $406.04 million across 27 awards and materially exceeds all other PSCs listed. The next largest category, AC61, totals $63.82 million across 85 awards, while the remaining PSCs are each below $10 million, indicating a steep drop-off after the top two categories. Activity is otherwise dispersed across research, professional support, engineering, IT/telecom, and construction-related PSCs, with R425 notable for 275 awards but relatively low obligated value of $5.40 million.

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 = '0008'
    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 113,550,124.25 113.55 million 478
2022 80,411,653.21 80.41 million 276
2023 97,538,134.77 97.54 million 211
2024 102,997,230.92 103.00 million 150
2025 83,847,972.36 83.85 million 84

Insight

For PIID 0008, obligated amounts were highest in 2021 at $113.55 million across 478 awards, then declined in 2022 before rebounding in 2023 and 2024. Award volume fell steadily over the period, from 478 in 2021 to 84 in 2025, indicating a notable contraction in transaction frequency even as obligations remained relatively elevated. The pattern suggests funding is concentrated in fewer awards over time, with annual obligations remaining in the $80 million to $103 million range since 2022.

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.