Award Number

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

Award number 0002 for agency 9700 shows obligation and action activity over the last 5 years.

This award page summarizes federal procurement activity for PIID 0002 under agency ID 9700 during the last 5 years. Total obligations were 2.36 billion across 4,826 award actions, with an average action value of 489,697.1.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are based on the provided analysis window and reported as both readable and exact totals.

Agency ID
9700
PIID
0002
Type
Award
Total Obligated
2.36 billion
2,363,278,207.28
Actions
4,826
Average Action Value
489,697.10

Overview

The award record for PIID 0002 reflects 2,363,278,207.28 in total obligated value over the last 5 years. The action count of 4,826 indicates frequent contract activity within the analysis window, and the average action value is 489,697.1.

How to use this page

Use this page to review obligation totals and action volume for award 0002 in agency 9700. The figures support basic analysis of award activity without adding details beyond the reported totals, counts, and average action value.

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 = '0002'
    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
2100 DEPT OF THE ARMY 1,872,554,808.26 1.87 billion 2,721
5700 DEPT OF THE AIR FORCE 361,335,169.37 361.34 million 571
1700 DEPT OF THE NAVY 166,309,212.52 166.31 million 752
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 9,185,551.25 9.19 million 53
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 4,447,817.51 4.45 million 37
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 3,412,719.47 3.41 million 17
97AS DEFENSE LOGISTICS AGENCY 2,109,979.68 2.11 million 93
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 424,407.47 424.41 thousand 44
97JC MISSILE DEFENSE AGENCY (MDA) 13,271.44 13.27 thousand 13
97AZ DEFENSE COMMISSARY AGENCY (DECA) -968.75 -968.75 1

Insight

Obligations under PIID 0002 over the last 5 years are highly concentrated in the Department of the Army, which accounts for $1.87 billion across 2,721 awards and far exceeds all other agencies listed. The Department of the Air Force ($361.34 million, 571 awards) and Department of the Navy ($166.31 million, 752 awards) are the next largest recipients, indicating a strong DoD concentration with a long tail of smaller obligations across other defense agencies. Non-service agencies such as DISA, DTRA, and USSOCOM each represent comparatively small shares, and several agencies show minimal obligation amounts, including a negative value for DECA.

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 = '0002'
        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
AMENTUM SERVICES, INC. 5W3V7 920,813,851.04 920.81 million 154
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 310,727,742.61 310.73 million 110
KBRWYLE TECHNOLOGY SOLUTIONS, LLC 15151 253,753,711.91 253.75 million 113
DYNETICS, INC. 7L855 123,364,232.41 123.36 million 19
ERI SERVICES, INC. 100,594,737.00 100.59 million 10
COLSA CORPORATION 4U825 85,608,491.02 85.61 million 162
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 82,765,591.58 82.77 million 195
INTUITIVE RESEARCH AND TECHNOL 3H7B0 77,852,419.31 77.85 million 91
VALIANT GLOBAL DEFENSE SERVICES INC. 0K831 63,900,784.05 63.90 million 19
NORTHROP GRUMMAN SYSTEMS CORPORATION 5FVX5 37,952,952.94 37.95 million 30

Insight

Over the last 5 years, obligations under PIID 0002 are concentrated among a small set of vendors, led by AMENTUM SERVICES, INC. at $920.81 million across 154 awards, well above the next highest vendor. A second tier includes MASSACHUSETTS INSTITUTE OF TECHNOLOGY ($310.73 million) and KBRWYLE TECHNOLOGY SOLUTIONS, LLC ($253.75 million), while the remaining vendors each account for materially lower totals, generally below $124 million. Award counts are more dispersed than dollars obligated, with high-volume vendors such as COLSA CORPORATION and INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION receiving many awards but comparatively smaller total obligations.

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 = '0002'
    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
561210 FACILITIES SUPPORT SERVICES 1,259,945,756.66 1.26 billion 473
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 584,346,736.82 584.35 million 941
541330 ENGINEERING SERVICES 443,970,107.64 443.97 million 1,398
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 51,026,006.44 51.03 million 178
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 30,563,484.18 30.56 million 178
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 18,321,886.88 18.32 million 18
517919 ALL OTHER TELECOMMUNICATIONS 17,462,841.02 17.46 million 3
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 15,416,498.98 15.42 million 87
221118 OTHER ELECTRIC POWER GENERATION 11,536,625.41 11.54 million 26
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 9,998,825.52 10.00 million 8

Insight

Obligations for PIID 0002 are highly concentrated in NAICS 561210, Facilities Support Services, which accounts for $1.26 billion across 473 awards. The next two categories, NAICS 541712 and 541330, add another $1.03 billion combined, indicating that the award activity is dominated by support, R&D, and engineering services. Beyond these three codes, obligations drop sharply, with all remaining listed NAICS codes each below $52 million, suggesting a long tail of smaller-value activity across construction, telecommunications, manufacturing, and consulting.

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 = '0002'
    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
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 990,789,230.34 990.79 million 354
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 383,221,615.21 383.22 million 1,125
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 325,883,517.23 325.88 million 157
R799 SUPPORT- MANAGEMENT: OTHER 260,853,323.98 260.85 million 118
AC21 NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; BASIC RESEARCH 128,929,416.78 128.93 million 38
R499 SUPPORT- PROFESSIONAL: OTHER 121,660,548.86 121.66 million 164
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 84,999,624.25 85.00 million 275
R412 SUPPORT- PROFESSIONAL: SIMULATION 38,548,577.54 38.55 million 27
Y1PZ CONSTRUCTION OF OTHER NON-BUILDING FACILITIES 17,903,274.40 17.90 million 16
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 13,419,630.87 13.42 million 53

Insight

Over the last 5 years, obligations under PIID 0002 are concentrated in support and R&D PSCs, led by R706 at 990.79 million across 354 awards and R425 at 383.22 million across 1,125 awards. R706 alone represents the largest dollar share, while R425 has the highest award count, indicating a broad distribution of smaller support actions. R&D codes AC61 and AC21 together add 454.81 million, showing a material research component alongside the dominant logistics and technical support spending. Non-support categories are comparatively limited, with the remaining listed PSCs each below 261 million.

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 = '0002'
    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 797,013,998.45 797.01 million 1,947
2022 472,162,850.60 472.16 million 1,230
2023 407,717,124.06 407.72 million 792
2024 413,302,437.74 413.30 million 545
2025 273,081,796.43 273.08 million 312

Insight

For PIID 0002 under Agency ID 9700, annual obligations declined sharply over the 5-year window, falling from $797.01 million in 2021 to $273.08 million in 2025, a reduction accompanied by a drop in awards from 1,947 to 312. The largest year-over-year decline occurred between 2021 and 2022, after which obligations remained in the $400 million range in 2023 and 2024 before decreasing again in 2025. This pattern indicates a clear downward concentration in both obligated dollars and award volume over time.

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.