Award Number

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

Federal procurement analysis for award number 0006 under agency ID 9700, covering the last 10 years of reported obligations and award actions.

This page summarizes award number 0006 for agency ID 9700 over the last 10 years. The record shows 24,866 award actions and total obligated amounts of 8.60 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are based on the provided readable total of 8.60 billion and the exact total obligated amount of 8,595,172,731.47.

Agency ID
9700
PIID
0006
Type
Award
Total Obligated
8.60 billion
8,595,172,731.47
Actions
24,866
Average Action Value
345,659.64

Overview

The award record for PIID 0006 under agency ID 9700 reflects 24,866 reported actions across the last 10 years. Total obligated amount is 8,595,172,731.47 dollars, with an average action value of 345,659.64 dollars.

How to use this page

Use this page to review the scale and activity level of award number 0006 in a procurement context. The action count, total obligation, and average action value provide a concise summary for comparisons, screening, or follow-up analysis.

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 = '0006'
    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 4,450,237,152.39 4.45 billion 9,219
1700 DEPT OF THE NAVY 1,567,342,876.00 1.57 billion 5,398
5700 DEPT OF THE AIR FORCE 1,507,308,937.01 1.51 billion 2,688
97AS DEFENSE LOGISTICS AGENCY 576,062,973.07 576.06 million 5,062
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 221,995,313.45 222.00 million 414
97JC MISSILE DEFENSE AGENCY (MDA) 83,548,544.12 83.55 million 250
9776 USTRANSCOM 69,130,614.03 69.13 million 73
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 65,900,944.37 65.90 million 180
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 46,287,916.63 46.29 million 279
9771 DEFENSE MICROELECTRONICS ACTIVITY (DMEA) 23,331,547.53 23.33 million 17

Insight

Award activity for PIID 0006 over the 10-year window is highly concentrated in the military departments, led by the Department of the Army at $4.45 billion across 9,219 awards, followed by the Department of the Navy at $1.57 billion and the Department of the Air Force at $1.51 billion. Defense-wide agencies account for a smaller but still meaningful share, with the Defense Logistics Agency at $576.06 million across 5,062 awards and USSOCOM at $222.00 million. Obligations drop sharply after the top four agencies, indicating a long tail of comparatively small award totals among the remaining organizations listed.

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 = '0006'
        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
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 793,111,031.85 793.11 million 227
DYNCORP INTERNATIONAL LIMITED LIABILITY COMPANY (7126) 1SMB2 584,142,758.16 584.14 million 79
LOCKHEED MARTIN CORPORATION 04939 386,083,862.41 386.08 million 47
ALLIANT TECHSYSTEMS OPERATIONS LLC 1PHL2 207,984,360.43 207.98 million 23
TELECOMMUNICATION SYSTEMS, INC. 0HAL7 195,088,491.52 195.09 million 106
L-3 COMMUNICATIONS CORPORATION 06401 186,855,307.29 186.86 million 152
GENERAL DYNAMICS LAND SYSTEMS INC. 7W356 155,360,392.00 155.36 million 49
BELL BOEING JOINT PROJECT OFFICE 138,938,859.35 138.94 million 6
AASKI TECHNOLOGY INC 111,254,702.17 111.25 million 19
BOOZ ALLEN HAMILTON INC. 17038 92,682,766.23 92.68 million 212

Insight

Over the 10-year window, obligations under PIID 0006 are concentrated among a small set of vendors, led by Massachusetts Institute of Technology at $793.11 million across 227 awards and DynCorp International at $584.14 million across 79 awards. The top 10 vendors together account for substantial spending, with several firms exceeding $100 million, indicating a durable multi-vendor distribution rather than reliance on a single supplier. Award counts are not proportional to obligated dollars in several cases—for example, Booz Allen Hamilton has 212 awards but $92.68 million, while MIT and DynCorp combine much larger obligations with fewer awards—suggesting a mix of high-value and more numerous lower-value actions.

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 = '0006'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,425,073,896.92 1.43 billion 2,270
541330 ENGINEERING SERVICES 873,744,406.44 873.74 million 3,141
336411 AIRCRAFT MANUFACTURING 737,323,514.76 737.32 million 451
561210 FACILITIES SUPPORT SERVICES 697,793,684.30 697.79 million 630
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 366,281,560.95 366.28 million 1,545
334290 OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING 280,007,049.30 280.01 million 303
324110 PETROLEUM REFINERIES 278,452,335.40 278.45 million 458
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 240,920,291.53 240.92 million 169
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 231,737,667.32 231.74 million 924
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 222,042,331.10 222.04 million 287

Insight

Over the 10-year window for award PIID 0006 under agency 9700, obligations are concentrated in research, engineering, and manufacturing-related NAICS codes. NAICS 541712 leads with $1.43 billion across 2,270 awards, followed by 541330 with $873.74 million across 3,141 awards; together these two codes account for a substantial share of the listed obligations and indicate sustained technical services demand. The remaining top NAICS codes are more dispersed, with significant but lower obligations in aircraft manufacturing, facilities support services, construction, communications equipment, petroleum refining, ammunition manufacturing, and related aerospace and electronics manufacturing 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 = '0006'
    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
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 944,921,048.00 944.92 million 476
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 735,498,106.54 735.50 million 1,696
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 715,976,516.53 715.98 million 286
2995 MISCELLANEOUS ENGINE ACCESSORIES, AIRCRAFT 391,022,838.53 391.02 million 71
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 228,823,960.99 228.82 million 328
5895 MISCELLANEOUS COMMUNICATION EQUIPMENT 217,242,832.86 217.24 million 239
1305 AMMUNITION, THROUGH 30MM 214,108,223.73 214.11 million 31
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 206,821,536.08 206.82 million 304
AC23 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ADVANCED DEVELOPMENT) 171,216,376.43 171.22 million 265
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 152,347,331.03 152.35 million 12

Insight

Over the 10-year window, obligations under PIID 0006 are concentrated in a small set of PSCs, led by AC61 at $944.92 million across 476 awards, followed by R425 at $735.50 million across 1,696 awards and R706 at $715.98 million across 286 awards. The mix combines high-dollar R&D and support categories with significant materiel and equipment procurements, including PSCs 2995, 1680, 5895, 1305, and 9130. Award volume is not proportional to dollars in several categories, indicating a broad distribution of smaller awards alongside a few high-value PSCs.

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 = '0006'
    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 3,045,407,310.99 3.05 billion 10,060
2017 2,088,403,582.87 2.09 billion 7,451
2018 1,950,736,406.68 1.95 billion 3,117
2019 468,593,832.62 468.59 million 1,616
2020 418,108,062.22 418.11 million 1,072
2021 263,620,871.47 263.62 million 652
2022 139,819,739.23 139.82 million 363
2023 57,828,661.70 57.83 million 241
2024 104,840,977.09 104.84 million 193
2025 57,813,286.60 57.81 million 101

Insight

Obligations under PIID 0006 decline sharply over the 10-year window, falling from 3.05 billion in 2016 to 57.81 million in 2025. Award volume also contracts materially, from 10,060 awards in 2016 to 101 in 2025, indicating a pronounced reduction in both spend and transaction count. The series is heavily concentrated in the earlier years: 2016–2018 account for the largest annual obligations, after which funding drops below 500 million in 2019 and remains comparatively low through 2025, with a brief uptick in 2024.

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.