Award Number

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

Federal award number 0001 for agency 9700, showing FPDS activity over the last 5 years.

This page summarizes award number 0001 for agency 9700 using FPDS obligation and action data from the last 5 years. The record shows 5,912 award actions and total obligated amounts of 1.74 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and may differ from other FPDS views depending on filters and refresh timing.

Agency ID
9700
PIID
0001
Type
Award
Total Obligated
1.74 billion
1,742,049,014.75
Actions
5,912
Average Action Value
294,663.23

Overview

Over the last 5 years, award number 0001 under agency 9700 recorded 5,912 actions with total obligated value of 1,742,049,014.75. The average action value across the period was 294,663.23, indicating a large volume of relatively moderate-value actions within the award record. These figures reflect the provided FPDS analysis window and award-level totals.

How to use this page

Use this page to review the award-level activity tied to PIID 0001 and compare obligation volume against action count over the selected period. It is useful for identifying the scale of activity at the award level and for supporting FPDS searches, reporting, and 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 = '0001'
    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,470,705,353.60 1.47 billion 3,740
5700 DEPT OF THE AIR FORCE 155,349,845.03 155.35 million 377
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 99,022,164.66 99.02 million 71
1700 DEPT OF THE NAVY 60,347,997.04 60.35 million 462
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 15,034,820.39 15.03 million 86
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 10,925,140.72 10.93 million 19
97AS DEFENSE LOGISTICS AGENCY 6,610,482.01 6.61 million 205
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -5,629.87 -5.63 thousand 1
97AE DEFENSE ADVANCED RESEARCH PROJECTS AGENCY (DARPA) -130,834.85 -130.83 thousand 1
97BZ DEFENSE FINANCE AND ACCOUNTING SERVICE (DFAS) -270,252.93 -270.25 thousand 2

Insight

Obligations for PIID 0001 over the 5-year window are highly concentrated in the Department of the Army, which accounts for $1.47 billion across 3,740 awards. The Department of the Air Force is a distant second at $155.35 million, followed by DISA at $99.02 million and the Department of the Navy at $60.35 million, indicating a strong DoD-heavy distribution across multiple components. Obligations outside the major military agencies are comparatively limited, with only smaller amounts to WHS, USSOCOM, and DLA, while DODEA, DARPA, and DFAS show net negative obligated amounts.

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 = '0001'
        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 222,803,806.24 222.80 million 206
VECTRUS SYSTEMS CORPORATION 1D510 182,070,572.67 182.07 million 89
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 140,828,110.74 140.83 million 95
VECTRUS MISSION SOLUTIONS CORPORATION 0HUZ5 105,913,165.86 105.91 million 30
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 93,234,916.48 93.23 million 59
KBR WYLE SERVICES, LLC 9N030 66,755,159.55 66.76 million 118
NORTHROP GRUMMAN SYSTEMS CORPORATION 5FVX5 65,655,869.30 65.66 million 27
VS2, LLC 6RF52 62,343,982.75 62.34 million 28
KBRWYLE TECHNOLOGY SOLUTIONS, LLC 15151 53,668,350.62 53.67 million 71
TRIDENT TECHNOLOGIES, LLC 4UMJ6 50,040,499.57 50.04 million 102

Insight

Obligations over the 5-year window are concentrated among a small set of vendors, led by AMENTUM SERVICES, INC. ($222.80 million across 206 awards) and VECTRUS SYSTEMS CORPORATION ($182.07 million across 89 awards). The next tier includes MASSACHUSETTS INSTITUTE OF TECHNOLOGY, VECTRUS MISSION SOLUTIONS CORPORATION, and GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC., indicating a mix of high-dollar and higher-award-count performers. Award activity is also dispersed across multiple vendors with materially lower total obligations, including KBR WYLE SERVICES, LLC and TRIDENT TECHNOLOGIES, LLC, which received many awards but comparatively lower obligated amounts.

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 = '0001'
    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 817,556,557.56 817.56 million 1,049
541330 ENGINEERING SERVICES 538,169,778.55 538.17 million 1,612
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 273,316,078.44 273.32 million 757
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 37,957,975.17 37.96 million 178
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 30,773,225.45 30.77 million 56
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 28,820,640.10 28.82 million 113
333318 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 20,050,847.22 20.05 million 32
541519 OTHER COMPUTER RELATED SERVICES 19,715,708.64 19.72 million 73
336611 SHIP BUILDING AND REPAIRING 17,128,965.93 17.13 million 61
336212 TRUCK TRAILER MANUFACTURING 15,803,586.43 15.80 million 30

Insight

Over the past 5 years, obligations for PIID 0001 under agency 9700 are concentrated in a few NAICS codes, led by 561210 Facilities Support Services at $817.56 million across 1,049 awards and 541330 Engineering Services at $538.17 million across 1,612 awards. These two categories account for the clear majority of the listed obligation value, with 541712 Research and Development in the Physical, Engineering, and Life Sciences adding another $273.32 million across 757 awards. The remaining NAICS codes are materially smaller, each below $38 million, indicating a long tail of secondary spending across professional services, manufacturing, and transportation-related activities.

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 = '0001'
    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
J025 MAINT/REPAIR/REBUILD OF EQUIPMENT- VEHICULAR EQUIPMENT COMPONENTS 405,469,035.02 405.47 million 217
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 366,000,532.98 366.00 million 1,081
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 333,813,817.64 333.81 million 657
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 134,981,809.34 134.98 million 168
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 104,366,252.18 104.37 million 370
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 92,481,112.39 92.48 million 35
R799 SUPPORT- MANAGEMENT: OTHER 75,116,933.27 75.12 million 156
R499 SUPPORT- PROFESSIONAL: OTHER 46,489,829.60 46.49 million 235
J014 MAINT/REPAIR/REBUILD OF EQUIPMENT- GUIDED MISSILES 38,996,409.83 39.00 million 51
U009 EDUCATION/TRAINING- GENERAL 33,971,274.06 33.97 million 26

Insight

Over the past 5 years, obligations under PIID 0001 are concentrated in maintenance/repair and support services, led by J025 at $405.47 million across 217 awards, followed closely by R425 at $366.00 million across 1,081 awards and R706 at $333.81 million across 657 awards. These three PSCs account for the dominant share of top obligations, indicating sustained spending on vehicular equipment maintenance, engineering/technical support, and logistics support. The remaining PSCs are materially smaller, with no other code exceeding $135.0 million, suggesting a secondary mix of R&D, program management, IT/network management, and other support 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 = '0001'
    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 742,469,897.15 742.47 million 2,326
2022 335,533,562.18 335.53 million 1,485
2023 283,490,305.30 283.49 million 928
2024 230,264,474.25 230.26 million 689
2025 150,290,775.87 150.29 million 484

Insight

Obligations and award counts for PIID 0001 show a clear year-over-year decline over the 5-year window, falling from $742.47 million across 2,326 awards in 2021 to $150.29 million across 484 awards in 2025. The largest drop occurred between 2021 and 2022, after which both obligated dollars and award volume continued to contract each year. This indicates a marked reduction in activity and a more limited annual distribution of obligations in the later years.

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.