Award Number

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

Award number 0004 for agency ID 9700 covers 32,822 recorded award actions over the last 10 years, with total obligations of $11.77 billion.

This page summarizes federal procurement activity tied to award number 0004 under agency ID 9700 across the last 10 years. The record shows $11,770,602,864.88 in total obligated dollars and an average action value of $358,619.31.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided 10-year analysis window and may include multiple actions associated with the same award number.

Agency ID
9700
PIID
0004
Type
Award
Total Obligated
11.77 billion
11,770,602,864.88
Actions
32,822
Average Action Value
358,619.31

Overview

Award number 0004 is associated with procurement activity tracked under agency ID 9700 in the last 10 years. The dataset shows 32,822 award actions and $11,770,602,864.88 in total obligated funding, with an average action value of $358,619.31.

How to use this page

Use this page to review the scale and frequency of activity associated with award number 0004. The figures can support basic procurement analysis, including obligation totals, action volume, and average action size within the selected period.

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 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 5,422,200,565.76 5.42 billion 12,316
1700 DEPT OF THE NAVY 1,975,654,740.90 1.98 billion 7,346
5700 DEPT OF THE AIR FORCE 1,443,089,203.07 1.44 billion 3,901
97AS DEFENSE LOGISTICS AGENCY 822,496,958.74 822.50 million 6,045
97DH DEFENSE HEALTH AGENCY (DHA) 765,485,138.42 765.49 million 109
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 370,443,378.13 370.44 million 248
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 304,322,015.36 304.32 million 429
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 269,245,875.30 269.25 million 447
97JC MISSILE DEFENSE AGENCY (MDA) 221,345,373.96 221.35 million 290
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 154,375,046.99 154.38 million 271

Insight

Over the 10-year window, obligations under PIID 0004 are highly concentrated among the top three agencies: the Department of the Army, Department of the Navy, and Department of the Air Force account for 8.84 billion combined, led by the Army at 5.42 billion across 12,316 awards. The remaining obligations are distributed across several defense organizations, with the Defense Logistics Agency at 822.50 million across 6,045 awards and the Defense Health Agency at 765.49 million across 109 awards, indicating materially different award volumes at similar spend levels. Smaller obligations across WHS, DISA, USSOCOM, MDA, and DTRA suggest a broad but comparatively modest cross-agency footprint.

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 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
DYNCORP INTERNATIONAL LIMITED LIABILITY COMPANY (7126) 1SMB2 875,077,385.95 875.08 million 46
EXPRESS SCRIPTS, INC. 721,731,083.80 721.73 million 9
GENERAL DYNAMICS LAND SYSTEMS INC. 7W356 462,932,865.54 462.93 million 47
ALLIANT TECHSYSTEMS OPERATIONS LLC 248,478,947.03 248.48 million 35
INSTITUTE FOR DEFENSE ANALYSES 7A293 236,136,794.47 236.14 million 41
LOCKHEED MARTIN CORPORATION 186,077,013.15 186.08 million 129
NORTHROP GRUMMAN SYSTEMS CORPORATION 116,033,521.17 116.03 million 75
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 111,248,974.90 111.25 million 79
ELLWOOD NATIONAL FORGE COMPANY 3D8M1 108,390,386.10 108.39 million 1
DCS CORPORATION 1P418 104,412,455.32 104.41 million 187

Insight

Obligations under PIID 0004 are concentrated among a small set of vendors over the 10-year window, with Dyncorp International and Express Scripts alone accounting for more than $1.59 billion combined. The remaining top vendors each received between about $104 million and $463 million, indicating a broad but still highly weighted spend distribution among a few large incumbents. Award counts vary materially from a single award for Ellwood National Forge to 187 awards for DCS Corporation, suggesting that higher obligated dollars are not always associated with higher award frequency.

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 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,557,498,142.53 1.56 billion 3,562
541330 ENGINEERING SERVICES 1,470,033,388.18 1.47 billion 4,412
561210 FACILITIES SUPPORT SERVICES 1,081,826,780.00 1.08 billion 1,026
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 757,032,546.21 757.03 million 38
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 526,715,926.81 526.72 million 619
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 519,942,046.94 519.94 million 2,082
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 461,117,601.55 461.12 million 132
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 390,883,217.52 390.88 million 221
336411 AIRCRAFT MANUFACTURING 380,849,105.64 380.85 million 469
324110 PETROLEUM REFINERIES 367,248,690.94 367.25 million 501

Insight

Over the 10-year window, obligations under PIID 0004 are concentrated in a small set of NAICS codes led by 541712 ($1.56B) and 541330 ($1.47B), which together account for the largest share of spending and a high volume of awards (3,562 and 4,412, respectively). The next tier includes 561210 ($1.08B) and 524114 ($757.03M), but the distribution then tapers to several lower-obligation categories, indicating a broad mix of professional services, facilities support, construction, and industrial/manufacturing activity. Award counts vary materially by code, with 524114 carrying substantial obligated dollars across only 38 awards, suggesting a more concentrated obligation pattern in that category.

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 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
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 989,197,193.39 989.20 million 574
Q201 MEDICAL- GENERAL HEALTH CARE 690,708,945.51 690.71 million 151
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 546,152,343.68 546.15 million 1,746
2350 COMBAT, ASSAULT, AND TACTICAL VEHICLES, TRACKED 444,392,288.27 444.39 million 31
R499 SUPPORT- PROFESSIONAL: OTHER 350,478,042.43 350.48 million 1,162
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 343,151,361.69 343.15 million 334
B541 SPECIAL STUDIES/ANALYSIS- DEFENSE 322,254,752.46 322.25 million 157
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 307,418,550.17 307.42 million 656
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 275,522,143.85 275.52 million 415
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 274,976,254.03 274.98 million 401

Insight

Over the 10-year window, obligations for PIID 0004 are concentrated in a small set of PSCs, led by R706 (Logistics Support) at $989.20 million across 574 awards and Q201 (Medical - General Health Care) at $690.71 million across 151 awards. The remaining top PSCs are more distributed by count, with R425 (Engineering/Technical Support) and R499 (Other Professional Support) accounting for substantial obligations through high award volumes of 1,746 and 1,162, respectively. The mix also includes specialized defense, fuel, and IT/telecom categories, indicating a broad requirement base with several high-dollar service categories dominating obligation totals.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 5,077,171,633.41 5.08 billion 13,225
2017 3,099,380,699.07 3.10 billion 9,620
2018 2,428,167,440.15 2.43 billion 4,225
2019 577,665,459.87 577.67 million 2,225
2020 431,646,073.76 431.65 million 1,475
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

Award activity under PIID 0004 is highly front-loaded in the early part of the 10-year window, with obligations declining from $5.08 billion across 13,225 awards in 2016 to $3.10 billion across 9,620 awards in 2017 and $2.43 billion across 4,225 awards in 2018. Obligations then fell sharply in 2019–2022 to the sub-$600 million range and the award count continued to contract, reaching 480 awards in 2022. In 2023 obligations were negative at -$7.86 million, indicating net deobligations, before returning to positive but comparatively low levels in 2024 and 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.