Award Number

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

Federal procurement summary for award number 0006 under agency ID 9700 over the last 5 years.

This page summarizes federal award activity for PIID 0006 within agency ID 9700 over the last 5 years. The record shows 1,550 award actions with $623,923,536.09 in total obligated funding, averaging $402,531.31 per action.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are based on the provided readable total and exact total obligated amount for the selected analysis window.

Agency ID
9700
PIID
0006
Type
Award
Total Obligated
623.92 million
623,923,536.09
Actions
1,550
Average Action Value
402,531.31

Overview

In the last 5 years, award 0006 for agency ID 9700 recorded 1,550 actions and $623,923,536.09 in total obligated funding. The average action value was $402,531.31, indicating recurring obligation activity across the analysis period.

How to use this page

Use this page to review award-level obligation volume and action frequency for PIID 0006. It supports quick comparison of total obligated dollars, action count, and average action value within the selected five-year 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 = '0006'
    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
5700 DEPT OF THE AIR FORCE 372,121,861.32 372.12 million 213
2100 DEPT OF THE ARMY 276,015,903.02 276.02 million 715
1700 DEPT OF THE NAVY 19,519,355.37 19.52 million 241
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 185,343.41 185.34 thousand 14
97BZ DEFENSE FINANCE AND ACCOUNTING SERVICE (DFAS) -1,643.88 -1.64 thousand 1
9748 DEFENSE HUMAN RESOURCES ACTIVITY -5,000.00 -5.00 thousand 1
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -6,315.62 -6.32 thousand 1
97AS DEFENSE LOGISTICS AGENCY -98,997.44 -99.00 thousand 57
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -879,727.78 -879.73 thousand 15
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) -1,025,846.78 -1.03 million 16

Insight

Obligations for PIID 0006 are highly concentrated in the Department of the Air Force and Department of the Army, which together account for about $648.14 million across 928 awards over the 5-year window. The Department of the Navy is a distant third at $19.52 million, indicating a steep drop-off after the top two agencies. Smaller volumes are recorded for USSOCOM, while the remaining listed agencies have negative obligated amounts, suggesting net deobligations or adjustments rather than new funding activity.

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 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
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 380,171,297.36 380.17 million 117
DYNCORP INTERNATIONAL LIMITED LIABILITY COMPANY (7126) 1SMB2 172,129,004.52 172.13 million 17
L-3 COMMUNICATIONS CORPORATION 06401 44,449,331.17 44.45 million 57
HONEYWELL INTERNATIONAL INC. 40931 25,868,565.33 25.87 million 10
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 15,261,603.87 15.26 million 46
TETRA TECH-MAYTAG AIRCRAFT CORPORATION JOINT VENTURE 6UKP8 13,042,058.99 13.04 million 10
AMENTUM SERVICES, INC. 5W3V7 9,515,689.00 9.52 million 37
VECTRUS MISSION SOLUTIONS CORPORATION 0HUZ5 8,462,098.85 8.46 million 35
AMERESCO SELECT, INC. 1EYD9 7,904,706.61 7.90 million 4
AMENTUM SERVICES INC 5W3V7 4,105,242.57 4.11 million 14

Insight

Over the past 5 years, obligations under PIID 0006 are concentrated among a small set of vendors, led by Massachusetts Institute of Technology at $380.17 million across 117 awards and DynCorp International at $172.13 million across 17 awards. The next highest vendors fall sharply below these two, with L-3 Communications at $44.45 million and Honeywell at $25.87 million, indicating a pronounced drop-off after the top tier. Award counts are more dispersed than dollars, with several vendors receiving many smaller awards, including L-3 Communications (57), Johnson Controls Government Systems (46), and Amentum Services, Inc. (37).

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 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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 370,112,713.41 370.11 million 315
561210 FACILITIES SUPPORT SERVICES 179,020,929.74 179.02 million 58
541330 ENGINEERING SERVICES 45,681,283.04 45.68 million 360
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 44,395,338.93 44.40 million 61
213112 SUPPORT ACTIVITIES FOR OIL AND GAS OPERATIONS 13,042,058.99 13.04 million 10
811111 GENERAL AUTOMOTIVE REPAIR 9,453,147.32 9.45 million 34
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 5,894,369.36 5.89 million 40
237120 OIL AND GAS PIPELINE AND RELATED STRUCTURES CONSTRUCTION 2,528,672.43 2.53 million 11
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 2,102,889.18 2.10 million 34
237130 POWER AND COMMUNICATION LINE AND RELATED STRUCTURES CONSTRUCTION 1,440,231.11 1.44 million 3

Insight

For award PIID 0006 under Agency ID 9700 over the last 5 years, obligations are concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), at $370.11 million across 315 awards, followed by NAICS 561210, Facilities Support Services, at $179.02 million across 58 awards. NAICS 541330, Engineering Services, has the highest award count in the set (360) but a much lower obligated value of $45.68 million, indicating a more fragmented spend pattern. Remaining obligations are distributed across smaller technical, construction, transportation, and repair categories, each below $45 million and individually representing a comparatively minor share of total obligations.

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 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
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 378,437,023.54 378.44 million 161
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 174,583,886.50 174.58 million 45
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 92,730,859.39 92.73 million 269
Z1NA MAINTENANCE OF FUEL SUPPLY FACILITIES 13,042,058.99 13.04 million 10
J099 MAINT/REPAIR/REBUILD OF EQUIPMENT- MISCELLANEOUS 9,453,147.32 9.45 million 34
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 3,895,183.42 3.90 million 38
5841 RADAR EQUIPMENT, AIRBORNE 2,449,000.00 2.45 million 12
Y1EZ CONSTRUCTION OF OTHER INDUSTRIAL BUILDINGS 2,414,039.83 2.41 million 7
Y1AA CONSTRUCTION OF OFFICE BUILDINGS 2,330,527.19 2.33 million 5
H270 EQUIPMENT AND MATERIALS TESTING- ADP EQUIPMENT/SOFTWARE/SUPPLIES/SUPPORT EQUIPMENT 2,034,246.94 2.03 million 15

Insight

Obligations are concentrated in a small number of PSCs, led by AC61 at $378.44 million across 161 awards, followed by R706 at $174.58 million and R425 at $92.73 million. The top three PSCs account for most of the reported obligation and indicate a strong emphasis on R&D, logistics support, and engineering/technical services. Lower-ranked PSCs fall sharply to the $13.04 million range and below, suggesting a long tail of smaller obligation categories across maintenance, testing, and construction activities.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID 0006 declined sharply from 263.62 million across 652 awards in 2021 to 57.81 million across 101 awards in 2025, indicating a marked contraction in both value and award volume over the 5-year window. Activity was strongest in 2021 and 2022, then fell to a low point in 2023 before a partial rebound in 2024. The pattern suggests spending is concentrated in the earlier years, with no sustained recovery to prior levels by 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.