Award Number

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

Award number 0008 for agency 9700 shows obligation activity over the last 10 years.

This award record for agency ID 9700, PIID 0008, covers the last 10 years of reported action activity. The award has 19,205 actions and 5.79 billion in total obligated value, with an average action value of 301,255.61.

Generated at 03/20/2026

Analysis period: Last 10 years

Values are based on the provided analysis window and include the exact total obligated amount of 5,785,613,992.34.

Agency ID
9700
PIID
0008
Type
Award
Total Obligated
5.79 billion
5,785,613,992.34
Actions
19,205
Average Action Value
301,255.61

Overview

The award number 0008 record for agency 9700 reflects 19,205 reported actions during the last 10 years. Total obligated value is 5,785,613,992.34, which is about 5.79 billion in readable form. The average action value across the record is 301,255.61.

How to use this page

Use this page to review the scale of obligation activity associated with award 0008 and to compare action volume with total obligated value. The figures provide a compact summary of reported federal procurement activity for the selected 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 = '0008'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,812,193,895.82 2.81 billion 6,730
1700 DEPT OF THE NAVY 1,055,403,440.54 1.06 billion 4,321
97AS DEFENSE LOGISTICS AGENCY 637,008,078.56 637.01 million 4,193
5700 DEPT OF THE AIR FORCE 625,365,252.42 625.37 million 1,886
97JC MISSILE DEFENSE AGENCY (MDA) 277,302,891.47 277.30 million 314
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 122,983,754.64 122.98 million 252
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 112,581,812.45 112.58 million 358
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 90,984,442.80 90.98 million 196
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 43,386,575.62 43.39 million 72
97DH DEFENSE HEALTH AGENCY (DHA) 25,811,416.08 25.81 million 64

Insight

Over the 10-year window, obligations are heavily concentrated in DEPT OF THE ARMY and DEPT OF THE NAVY, which together account for 7,051 awards and about $3.87 billion. The next tier—DEFENSE LOGISTICS AGENCY and DEPT OF THE AIR FORCE—adds another 6,079 awards and roughly $1.26 billion, indicating a broad but still top-weighted distribution across Defense components. All remaining agencies are materially smaller, with no single one exceeding $277.3 million, suggesting the award activity for PIID 0008 is driven primarily by Army and Navy demand.

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 10 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 637,940,600.96 637.94 million 57
DATAPATH, INC. 1BPK0 230,078,706.46 230.08 million 87
LOCKHEED MARTIN CORPORATION 112,538,277.65 112.54 million 91
BOEING COMPANY, THE 112,067,965.39 112.07 million 23
LOCKHEED MARTIN CORPORATION 3VQB0 110,419,638.30 110.42 million 60
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 98,833,914.21 98.83 million 236
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 94,669,763.07 94.67 million 106
NORTHROP GRUMMAN SYSTEMS CORPORATION 87,461,803.57 87.46 million 61
BOOZ ALLEN HAMILTON INC. 75,864,960.79 75.86 million 86
RAYTHEON COMPANY 96214 73,378,630.87 73.38 million 42

Insight

Over the 10-year window for PIID 0008 under agency 9700, obligations are concentrated among a small set of vendors, led by BAE SYSTEMS ORDNANCE SYSTEMS INC. at $637.94 million across 57 awards. The next highest obligated vendors are DATAPATH, INC. ($230.08 million, 87 awards) and two LOCKHEED MARTIN CORPORATION entries totaling $222.96 million across 151 awards, indicating a mix of high-dollar and high-transaction relationships. Award volume is more dispersed than dollars obligated, with INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION recording the most awards (236) but less than $100 million obligated, suggesting frequent smaller awards alongside a few major vendors driving total value.

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 10 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 765,701,196.47 765.70 million 126
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 623,458,165.19 623.46 million 1,583
541330 ENGINEERING SERVICES 611,930,232.87 611.93 million 2,740
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 307,156,164.42 307.16 million 424
324110 PETROLEUM REFINERIES 303,061,990.76 303.06 million 454
334290 OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING 276,415,327.43 276.42 million 174
336411 AIRCRAFT MANUFACTURING 273,331,356.22 273.33 million 344
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 270,071,091.48 270.07 million 225
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 246,812,325.51 246.81 million 1,113
561210 FACILITIES SUPPORT SERVICES 149,935,315.25 149.94 million 501

Insight

Obligations under PIID 0008 are concentrated in defense-related manufacturing and technical services, led by NAICS 332993 at $765.70 million across 126 awards. The next four NAICS codes—541712, 541330, 334511, and 324110—each exceed $300 million, indicating a broad but still highly concentrated spend profile across R&D, engineering, systems manufacturing, and petroleum-related activities. Award counts vary materially, with 541330 and 541712 carrying the largest number of actions, suggesting a mix of high-value manufacturing awards and higher-volume professional service procurements.

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 10 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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 775,384,564.92 775.38 million 1,868
1376 BULK EXPLOSIVES 640,097,441.66 640.10 million 67
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 279,071,846.32 279.07 million 321
R499 SUPPORT- PROFESSIONAL: OTHER 172,426,403.11 172.43 million 601
AC24 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ENGINEERING DEVELOPMENT) 154,565,387.66 154.57 million 83
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 124,170,659.75 124.17 million 352
1560 AIRFRAME STRUCTURAL COMPONENTS 115,580,259.88 115.58 million 292
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 113,442,565.56 113.44 million 155
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 104,493,116.48 104.49 million 158
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 103,715,733.46 103.72 million 253

Insight

Over the 10-year window, obligations for Agency 9700, PIID 0008 are concentrated in professional support and defense-related PSCs. R425 is the largest category at $775.38 million across 1,868 awards, followed by 1376 at $640.10 million, indicating substantial spend but relatively fewer awards in bulk explosives. The remaining top PSCs are more distributed across R&D, IT, airframe components, propellants, and program support, with no single category beyond the first two approaching the same obligation level.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 2,471,473,717.28 2.47 billion 8,007
2017 1,504,532,797.00 1.50 billion 5,858
2018 977,248,926.42 977.25 million 2,241
2019 210,267,871.87 210.27 million 1,142
2020 143,745,564.26 143.75 million 758
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

Obligations for PIID 0008 under agency 9700 are heavily concentrated in the earlier years of the 10-year window, declining from 2.47 billion across 8,007 awards in 2016 to 1.50 billion in 2017 and 977.25 million in 2018. After 2018, both obligated dollars and award counts dropped sharply and remained comparatively low, generally below 210 million annually and under 1,200 awards. The series shows a sustained contraction in activity, with a brief level increase in 2023–2024 before declining again in 2025.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.