Award Number

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

Award number 0008 for agency 9700 recorded 84 actions in the last full year, with total obligations of 83.85 million.

This page summarizes federal procurement activity for award number 0008 under agency ID 9700 during the last full year. The award shows 84 actions and total obligated funding of 83,847,972.36, with an average action value of 998,190.15.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the last full year and use the provided obligated totals, action count, and average action value.

Agency ID
9700
PIID
0008
Type
Award
Total Obligated
83.85 million
83,847,972.36
Actions
84
Average Action Value
998,190.15

Overview

Award number 0008 under agency ID 9700 shows 84 recorded actions in the last full year. Total obligated funding reached 83,847,972.36, which is 83.85 million when rounded for display. The average action value was 998,190.15.

How to use this page

Use this page to review the scale and frequency of obligation activity tied to award 0008. The totals support basic comparison across awards, including action count, obligated dollars, and average action value.

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 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
2100 DEPT OF THE ARMY 72,873,967.44 72.87 million 24
5700 DEPT OF THE AIR FORCE 13,215,407.92 13.22 million 17
97AS DEFENSE LOGISTICS AGENCY -8,157.16 -8.16 thousand 5
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) -87,684.20 -87.68 thousand 2
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -97,165.89 -97.17 thousand 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -351,059.89 -351.06 thousand 14
97JC MISSILE DEFENSE AGENCY (MDA) -564,401.81 -564.40 thousand 2
1700 DEPT OF THE NAVY -1,132,934.05 -1.13 million 19

Insight

Obligations under PIID 0008 over the past year are heavily concentrated in the DEPT OF THE ARMY, which accounts for $72.87 million across 24 awards. The DEPT OF THE AIR FORCE is the only other positive obligating agency at $13.22 million across 17 awards, indicating a strong two-agency concentration. The remaining listed agencies each show net deobligations, led by the DEPT OF THE NAVY at -$1.13 million across 19 awards, with smaller negative adjustments across DLA, DISA, DTRA, DCMA, and 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 = '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 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
BAE SYSTEMS ORDNANCE SYSTEMS INC. 6NDQ0 70,407,550.38 70.41 million 3
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 13,215,407.92 13.22 million 17
SIEMENS GOVERNMENT SERVICES, INC. 0DZG1 2,702,042.29 2.70 million 4
HONEYWELL INTERNATIONAL INC. 40931 638,898.29 638.90 thousand 2
BAE SYSTEMS ORDNANCE SYSTEMS INC 6NDQ0 130,099.55 130.10 thousand 1
LEIDOS, INC. 7LQ18 110,784.76 110.78 thousand 1
KIHOMAC, INC. 3L2L3 15,368.41 15.37 thousand 1
ULTISAT, INC. 3H9E0 2,831.48 2.83 thousand 1
PICKETT HOSIERY MILLS, INC. 1WVB7 248.00 248.00 1
ARCADIS U.S., INC. 005Q6 0.00 0.00 1

Insight

Obligations under PIID 0008 are concentrated primarily with BAE SYSTEMS ORDNANCE SYSTEMS INC. (CAGE 6NDQ0), which received $70.41 million across 3 awards, far exceeding all other vendors in the 1-year window. Massachusetts Institute of Technology is the next largest recipient by value at $13.22 million, but across 17 awards, indicating a more distributed award pattern than the top vendor. The remaining vendors account for materially smaller obligation totals, with several awards at or near minimal funding levels, including one zero-obligation award to ARCADIS U.S., INC.

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 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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 70,407,550.38 70.41 million 3
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 13,039,246.03 13.04 million 21
541330 ENGINEERING SERVICES 2,384,307.52 2.38 million 23
561210 FACILITIES SUPPORT SERVICES 130,099.55 130.10 thousand 1
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 110,784.76 110.78 thousand 2
517919 ALL OTHER TELECOMMUNICATIONS 2,831.48 2.83 thousand 1
315110 HOSIERY AND SOCK MILLS 248.00 248.00 1
541512 COMPUTER SYSTEMS DESIGN SERVICES 0.00 0.00 1
541620 ENVIRONMENTAL CONSULTING SERVICES 0.00 0.00 1
562910 REMEDIATION SERVICES 0.00 0.00 1

Insight

Award activity under PIID 0008 is highly concentrated in NAICS 332993, Ammunition (except Small Arms) Manufacturing, which accounts for $70.41 million across 3 awards and far exceeds all other categories. The next largest obligations are in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences, at $13.04 million across 21 awards, followed by NAICS 541330, Engineering Services, at $2.38 million across 23 awards, indicating a much broader but lower-value support base. Several additional NAICS codes appear only once and at minimal or zero obligation, reinforcing a distribution dominated by a single manufacturing category with secondary technical and support services.

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 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
1376 BULK EXPLOSIVES 70,407,550.38 70.41 million 3
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 13,039,246.03 13.04 million 18
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 2,737,569.36 2.74 million 15
S216 HOUSEKEEPING- FACILITIES OPERATIONS SUPPORT 130,099.55 130.10 thousand 1
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 87,194.70 87.19 thousand 3
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 2,831.48 2.83 thousand 1
8440 HOSIERY, HANDWEAR, AND CLOTHING ACCESSORIES, MEN'S 248.00 248.00 1
1650 AIRCRAFT HYDRAULIC, VACUUM, AND DE-ICING SYSTEM COMPONENTS 0.00 0.00 1
1420 GUIDED MISSILE COMPONENTS 0.00 0.00 1
5895 MISCELLANEOUS COMMUNICATION EQUIPMENT 0.00 0.00 1

Insight

Obligations are highly concentrated in PSC 1376 (Bulk Explosives), which accounts for $70.41 million across 3 awards and dominates activity in the 1-year window. The next largest categories, AC61 and R425, are materially smaller at $13.04 million and $2.74 million respectively, indicating a steep drop-off after the top PSCs. Remaining PSCs are low-dollar, with several at nominal or zero obligated amounts, suggesting a narrow spend profile centered on explosives and a smaller set of technical and R&D support services.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 83,847,972.36 83.85 million 84

Insight

For PIID 0008 within Agency 9700, the 1-year annual trend is concentrated entirely in FY 2025, with $83.85 million obligated across 84 awards. This indicates a single-year funding profile in the available window, with no additional years represented for comparison. The distribution is relatively dispersed across awards, with an average obligation of roughly $1.0 million per award.

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.