Award Number

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

Federal procurement award number 0004 for agency ID 9700, summarizing obligations and action activity over the last 5 years.

This page presents the award record for award number 0004 under agency ID 9700. Over the last 5 years, the award shows 2,052 actions and total obligated value of 156.57 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are based on the provided exact total obligated amount of 156571558.62 and are shown in readable form for quick review.

Agency ID
9700
PIID
0004
Type
Award
Total Obligated
156.57 million
156,571,558.62
Actions
2,052
Average Action Value
76,301.93

Overview

In the last 5 years, award number 0004 under agency ID 9700 recorded 2,052 award actions and $156,571,558.62 in total obligated value. The average action value across that window was $76,301.93, indicating many relatively small-to-mid-sized action entries within the award record.

How to use this page

Use this page to review the award’s obligation totals, action volume, and average action value in one place. It is most useful for quick procurement analysis, record comparison, and identifying the scale of activity tied to award number 0004.

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 = '0004'
    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 57,042,092.74 57.04 million 266
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 56,562,004.60 56.56 million 71
2100 DEPT OF THE ARMY 45,354,274.56 45.35 million 973
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 11,559,143.08 11.56 million 23
1700 DEPT OF THE NAVY 8,748,055.16 8.75 million 324
97JC MISSILE DEFENSE AGENCY (MDA) 4,192,310.28 4.19 million 13
97AS DEFENSE LOGISTICS AGENCY 31,046.50 31.05 thousand 63
9771 DEFENSE MICROELECTRONICS ACTIVITY (DMEA) 24,433.00 24.43 thousand 1
9748 DEFENSE HUMAN RESOURCES ACTIVITY -7,558.72 -7.56 thousand 2
97DH DEFENSE HEALTH AGENCY (DHA) -1,449,270.79 -1.45 million 19

Insight

Obligations under PIID 0004 over the 5-year window are concentrated among a small set of DoD components, led by the Department of the Air Force ($57.04M), DISA ($56.56M), and the Department of the Army ($45.35M). Award volume is more diffuse than dollars, with the Army accounting for the most awards (973) but at a lower obligated total than the Air Force and DISA, indicating a higher number of smaller actions. USSOCOM, the Navy, and MDA contribute a secondary tier of obligations, while the remaining agencies are immaterial in dollar terms. Negative obligations appear for DHA and Defense Human Resources Activity, suggesting deobligations or downward adjustments within the period.

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 = '0004'
        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
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 62,731,967.76 62.73 million 36
ENERGY SYSTEMS GROUP, LLC 3FU33 52,479,704.95 52.48 million 42
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 52,121,871.50 52.12 million 54
DCS CORPORATION 1P418 40,318,668.41 40.32 million 52
SYSTEM STUDIES & SIMULATION INC 0WYZ8 40,277,959.46 40.28 million 39
BOWHEAD PROFESSIONAL SOLUTIONS, LLC 637U4 10,701,779.95 10.70 million 22
CACI-WGI, INC. 5ZNE3 9,795,094.88 9.80 million 8
BOOZ ALLEN HAMILTON INC. 17038 8,540,707.50 8.54 million 35
WINTEC ARROWMAKER, INC. 0SY19 6,243,754.72 6.24 million 13
AECOM USA, INC. 0CXR6 6,187,335.94 6.19 million 6

Insight

Over the past 5 years, obligations under PIID 0004 are concentrated among a small set of vendors, with the top five receiving roughly $257.8 million combined. GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. has the largest obligation total at $62.73 million, but the next four vendors are closely grouped between about $40.28 million and $52.48 million, indicating a relatively even distribution among the leading recipients. Award counts are also dispersed, ranging from 6 to 54 across the listed vendors, which suggests recurring use of multiple contractors rather than dependence on a single awardee.

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 = '0004'
    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
541330 ENGINEERING SERVICES 128,538,961.18 128.54 million 516
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 111,585,837.47 111.59 million 401
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 9,618,621.94 9.62 million 36
517110 WIRED TELECOMMUNICATIONS CARRIERS 7,457,990.32 7.46 million 27
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 6,578,466.12 6.58 million 50
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 4,336,404.86 4.34 million 3
221122 ELECTRIC POWER DISTRIBUTION 3,408,611.04 3.41 million 6
541519 OTHER COMPUTER RELATED SERVICES 3,195,267.50 3.20 million 26
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 2,173,858.67 2.17 million 14
517919 ALL OTHER TELECOMMUNICATIONS 2,136,943.47 2.14 million 15

Insight

For Agency 9700 PIID 0004 over the 5-year window, obligations are concentrated in two NAICS codes: 541330 Engineering Services ($128.54 million across 516 awards) and 541712 R&D in the physical, engineering, and life sciences ($111.59 million across 401 awards). These two categories account for the clear majority of the listed obligated dollars, indicating a strong emphasis on technical engineering and research support. The remaining NAICS codes are much smaller, with each under $10 million except 541611 at $9.62 million, and award counts generally low to moderate, suggesting a long tail of comparatively fragmented spending.

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 = '0004'
    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
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 70,116,811.61 70.12 million 76
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 57,805,499.62 57.81 million 226
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 50,320,426.51 50.32 million 83
J045 MAINT/REPAIR/REBUILD OF EQUIPMENT- PLUMBING, HEATING, AND WASTE DISPOSAL EQUIPMENT 45,818,226.82 45.82 million 28
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 44,777,321.71 44.78 million 138
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 7,696,815.72 7.70 million 31
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 6,661,478.13 6.66 million 14
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 6,209,545.08 6.21 million 64
AC23 NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; EXPERIMENTAL DEVELOPMENT 4,713,231.17 4.71 million 18
C121 CONSERVATION AND DEVELOPMENT 3,936,792.35 3.94 million 5

Insight

Over the past 5 years, obligations under PIID 0004 are concentrated in a small set of PSCs, led by D316 at $70.12 million across 76 awards and R425 at $57.81 million across 226 awards. The next tier includes AC61, J045, and R408, each with roughly $44.78 million to $50.32 million obligated, indicating a mix of telecommunications, professional support, R&D, and maintenance activity. Award volume is more diffuse than dollars, with R425 and R408 carrying relatively high counts, while J045 and C121 show larger obligations on fewer awards.

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 = '0004'
    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 82,450,189.42 82.45 million 817
2022 43,024,474.97 43.02 million 480
2023 -7,858,321.03 -7.86 million 344
2024 28,539,583.79 28.54 million 269
2025 10,415,631.47 10.42 million 142

Insight

Obligations for PIID 0004 declined sharply from 82.45 million across 817 awards in 2021 to 43.02 million across 480 awards in 2022, then turned negative at 7.86 million in 2023, indicating significant downward pressure and possible deobligations. Activity rebounded in 2024 to 28.54 million, but remained below 2021–2022 levels, with award counts continuing to fall to 269. In 2025, obligations decreased further to 10.42 million across 142 awards, showing a continued contraction in both value and volume over the 5-year window.

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.