Award Number

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

Federal procurement summary for award number 0009 under agency ID 9700, covering the last 10 years of obligation and action activity.

This page summarizes award number 0009 for agency ID 9700 over the last 10 years. The record shows 16,950 actions and total obligated value of $4,930,753,524.99.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the analysis window provided and the exact obligated amount, while the readable figure is rounded to 4.93 billion.

Agency ID
9700
PIID
0009
Type
Award
Total Obligated
4.93 billion
4,930,753,524.99
Actions
16,950
Average Action Value
290,899.91

Overview

Award number 0009 is associated with agency ID 9700 and shows sustained procurement activity across the last 10 years. The award has 16,950 recorded actions, with an average action value of $290,899.91 and total obligations of $4,930,753,524.99. The readable total for the same period is 4.93 billion.

How to use this page

Use this page to review the scale and pace of obligation activity tied to award number 0009. The action count and average action value provide a quick view of transaction volume, while the total obligated amount supports higher-level spend analysis within the stated 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 = '0009'
    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 2,512,024,238.87 2.51 billion 5,886
1700 DEPT OF THE NAVY 1,027,847,469.75 1.03 billion 3,854
5700 DEPT OF THE AIR FORCE 511,615,751.04 511.62 million 1,631
97AS DEFENSE LOGISTICS AGENCY 468,198,887.17 468.20 million 3,906
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 150,362,472.26 150.36 million 304
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 133,309,221.55 133.31 million 226
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 55,817,970.51 55.82 million 98
97JC MISSILE DEFENSE AGENCY (MDA) 37,606,465.48 37.61 million 208
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 33,767,338.93 33.77 million 89
9776 USTRANSCOM 30,692,575.11 30.69 million 61

Insight

Over the 10-year window, obligations for PIID 0009 are highly concentrated in the military departments: the Department of the Army leads with $2.51 billion across 5,886 awards, followed by the Department of the Navy at $1.03 billion across 3,854 awards and the Department of the Air Force at $511.62 million across 1,631 awards. Defense Logistics Agency also represents a significant share at $468.20 million across 3,906 awards, while the remaining agencies each account for materially smaller dollar volumes. Overall, the award activity is broad across multiple defense organizations, but obligation dollars are heavily skewed toward the Army and Navy.

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 = '0009'
        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
OSHKOSH DEFENSE, LLC 75Q65 345,393,038.46 345.39 million 42
KELLOGG BROWN AND ROOT SERVICES INCORPORATED (1250) 3GJU9 267,059,955.08 267.06 million 96
AM GENERAL LLC 0H3G6 212,936,519.80 212.94 million 21
TORCH TECHNOLOGIES INC 3CBV3 115,914,334.10 115.91 million 152
DMD 1VDA4 115,669,877.47 115.67 million 50
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 104,743,045.09 104.74 million 39
ERAPSCO 100,432,262.25 100.43 million 5
RAYTHEON COMPANY 67,134,921.69 67.13 million 49
ROCKWELL COLLINS, INC. 13499 64,874,188.28 64.87 million 23
J. WALTER THOMPSON COMPANY 3PMN9 56,237,816.97 56.24 million 5

Insight

Top vendors under award PIID 0009 over the past 10 years are moderately concentrated among a small set of suppliers, with OSHKOSH DEFENSE, KELLOGG BROWN AND ROOT SERVICES, and AM GENERAL each exceeding $200 million in obligations. Award volume is more dispersed than dollars: TORCH TECHNOLOGIES INC has the highest count at 152 awards but ranks fourth in obligated value, while KELLOGG BROWN AND ROOT SERVICES has 96 awards and the second-highest dollar total. The remaining vendors each range from about $56 million to $116 million, indicating a broad secondary tier rather than a single dominant follow-on supplier.

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 = '0009'
    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) 540,994,874.59 540.99 million 1,352
541330 ENGINEERING SERVICES 487,822,601.73 487.82 million 1,985
336212 TRUCK TRAILER MANUFACTURING 399,047,059.45 399.05 million 42
561210 FACILITIES SUPPORT SERVICES 393,225,030.78 393.23 million 587
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 293,553,073.58 293.55 million 358
324110 PETROLEUM REFINERIES 239,496,189.98 239.50 million 442
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 224,304,801.70 224.30 million 83
336411 AIRCRAFT MANUFACTURING 186,682,329.58 186.68 million 244
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 183,822,835.44 183.82 million 965
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 156,466,256.72 156.47 million 237

Insight

Obligations under PIID 0009 are concentrated in technical and engineering-related NAICS, led by 541712 at $540.99 million and 1,352 awards and 541330 at $487.82 million and 1,985 awards. A second tier of spending is spread across manufacturing and support activities, including 336212 ($399.05 million), 561210 ($393.23 million), and 334511 ($293.55 million), indicating a diversified mix beyond core R&D and engineering. Award counts vary materially across the top NAICS, with high-obligation categories such as 336212 supported by relatively few awards, suggesting larger individual awards in some manufacturing lines.

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 = '0009'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 512,296,258.22 512.30 million 1,368
2305 GROUND EFFECT VEHICLES 396,214,933.85 396.21 million 39
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 298,709,338.34 298.71 million 266
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 228,639,569.40 228.64 million 34
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 178,777,188.29 178.78 million 279
R499 SUPPORT- PROFESSIONAL: OTHER 172,515,511.73 172.52 million 579
AC23 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ADVANCED DEVELOPMENT) 142,657,421.88 142.66 million 170
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 139,742,375.77 139.74 million 230
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 123,379,646.89 123.38 million 187
1560 AIRFRAME STRUCTURAL COMPONENTS 116,241,062.77 116.24 million 220

Insight

Over the past 10 years, obligations for award PIID 0009 are concentrated in engineering/technical support (R425), which leads all PSCs at $512.30 million across 1,368 awards. The next largest obligations are clustered in ground effect vehicles (2305) at $396.21 million and logistics support (R706) at $298.71 million, indicating a mix of services and major equipment procurement rather than reliance on a single product line. Rounding out the top categories are trucks and tractors (2320), fuels (9130), and other professional support (R499), while R&D, IT/telecom, and airframe components each remain material but secondary, suggesting a diversified obligation profile with clear emphasis on support services.

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 = '0009'
    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 2,467,981,207.21 2.47 billion 7,201
2017 1,511,744,107.11 1.51 billion 5,297
2018 646,489,840.21 646.49 million 1,872
2019 253,442,129.78 253.44 million 986
2020 76,373,609.99 76.37 million 596
2021 10,197,491.86 10.20 million 390
2022 2,252,541.69 2.25 million 278
2023 -27,496,954.54 -27.50 million 159
2024 -5,840,149.07 -5.84 million 128
2025 -4,390,299.25 -4.39 million 43

Insight

Obligations for PIID 0009 under agency 9700 decline sharply over the 10-year window, falling from 2.47 billion in 2016 to 2.25 million in 2022 before turning negative in 2023 through 2025. Award volume also contracts materially, dropping from 7,201 awards in 2016 to 43 in 2025, indicating a pronounced reduction in activity and spend concentration over time. The negative obligations in the most recent years suggest substantial downward adjustments, deobligations, or closeout activity relative to earlier 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.