Award Number

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

Federal procurement summary page for award number 0020 under agency ID 9700, covering the last 10 years of award activity.

This page summarizes award number 0020 for agency ID 9700 over the last 10 years. The record shows 7,407 award actions with total obligated funding of 2.03 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures reflect the readable total obligated amount of 2,034,414,992.39 and an average action value of 274,661.13.

Agency ID
9700
PIID
0020
Type
Award
Total Obligated
2.03 billion
2,034,414,992.39
Actions
7,407
Average Action Value
274,661.13

Overview

Award number 0020 for agency ID 9700 accounts for 7,407 award actions in the last 10 years. Total obligated funding is 2,034,414,992.39, with an average action value of 274,661.13.

How to use this page

Use this page to review the scale and activity of award 0020 over the selected 10-year window. The figures support basic procurement analysis, including obligation volume and action frequency.

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 = '0020'
    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 1,014,343,795.75 1.01 billion 2,322
97AS DEFENSE LOGISTICS AGENCY 269,398,969.42 269.40 million 1,927
1700 DEPT OF THE NAVY 244,165,489.01 244.17 million 1,389
5700 DEPT OF THE AIR FORCE 163,459,458.82 163.46 million 876
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 138,529,304.70 138.53 million 132
97JC MISSILE DEFENSE AGENCY (MDA) 109,155,456.21 109.16 million 113
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 74,524,712.46 74.52 million 209
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 19,044,038.26 19.04 million 38
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 11,795,898.59 11.80 million 50
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) 8,470,339.18 8.47 million 10

Insight

Over the 10-year window, obligations for PIID 0020 are concentrated primarily in DEPT OF THE ARMY, which accounts for $1.01 billion across 2,322 awards, well above the next largest recipient. DEFENSE LOGISTICS AGENCY, DEPT OF THE NAVY, and DEPT OF THE AIR FORCE form a second tier, each with materially lower obligations but still substantial award volume. The remaining agencies are much smaller by obligation, with limited dollar amounts relative to the top four, indicating a broadly distributed but heavily Army-weighted award profile.

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 = '0020'
        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
TORCH TECHNOLOGIES INC 3CBV3 575,268,246.06 575.27 million 220
BOEING SIKORSKY AIRCRAFT SUPPORT 110,893,808.22 110.89 million 16
RAYTHEON COMPANY 98,384,840.93 98.38 million 63
OSHKOSH DEFENSE, LLC 75Q65 86,843,454.00 86.84 million 31
RAYTHEON COMPANY 15090 44,620,277.84 44.62 million 12
HONEYWELL INTERNATIONAL INC. 36,541,760.89 36.54 million 4
LEIDOS INNOVATIONS CORPORATION 7LQ18 34,984,027.00 34.98 million 48
GENERAL DYNAMICS C4 SYSTEMS, INC. 1VNY6 32,055,779.57 32.06 million 14
GENERAL ELECTRIC COMPANY 99207 31,578,230.28 31.58 million 7
BOOZ ALLEN HAMILTON INC. 17038 30,727,653.10 30.73 million 188

Insight

Over the 10-year window, obligations under PIID 0020 are highly concentrated in TORCH TECHNOLOGIES INC, which accounts for $575.27 million across 220 awards and materially exceeds every other vendor. The next-largest recipients are well below that level, led by BOEING SIKORSKY AIRCRAFT SUPPORT at $110.89 million, with the remaining vendors clustered between about $30.73 million and $98.38 million. Award activity is also dispersed, with BOOZ ALLEN HAMILTON INC. recording 188 awards but only $30.73 million, indicating frequent but relatively low-dollar obligations compared with the top dollar recipient.

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 = '0020'
    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) 702,402,243.56 702.40 million 811
324110 PETROLEUM REFINERIES 201,382,585.59 201.38 million 375
541330 ENGINEERING SERVICES 124,376,250.86 124.38 million 769
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 121,464,005.84 121.46 million 42
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 108,464,989.90 108.46 million 169
336212 TRUCK TRAILER MANUFACTURING 87,430,309.26 87.43 million 20
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 64,192,093.40 64.19 million 390
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 47,708,551.11 47.71 million 143
334419 OTHER ELECTRONIC COMPONENT MANUFACTURING 45,939,203.98 45.94 million 44
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 44,480,204.25 44.48 million 29

Insight

For PIID 0020 over the 10-year window, obligations are concentrated in NAICS 541712, which accounts for $702.40 million across 811 awards, materially exceeding all other industries. The next highest NAICS, 324110, totals $201.38 million, followed by 541330 at $124.38 million, indicating a steep drop-off after the lead category. Remaining obligations are spread across aviation, manufacturing, construction, and engineering-related NAICS codes, with no single category approaching the level of 541712.

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 = '0020'
    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 662,178,110.69 662.18 million 641
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 129,994,209.27 129.99 million 246
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 124,021,068.89 124.02 million 89
1430 GUIDED MISSILE REMOTE CONTROL SYSTEMS 97,507,648.65 97.51 million 59
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 88,973,896.89 88.97 million 23
9140 FUEL OILS 71,301,706.46 71.30 million 131
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 54,111,015.84 54.11 million 269
5960 ELECTRON TUBES AND ASSOCIATED HARDWARE 44,935,942.47 44.94 million 6
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 44,344,570.98 44.34 million 18
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 42,739,846.71 42.74 million 81

Insight

Over the 10-year window for award PIID 0020 under Agency ID 9700, obligations are highly concentrated in PSC R425 (Support- Professional: Engineering/Technical), which accounts for $662.18 million across 641 awards and far exceeds every other PSC listed. The remaining obligations are distributed across a mix of fuel, aircraft, missile, vehicle, R&D, and IT/telecom categories, with no single category approaching R425’s scale. Several PSCs have relatively high award counts but much lower obligated dollars, indicating broad issuance of smaller awards alongside a smaller number of larger-dollar procurement categories.

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 = '0020'
    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 822,796,494.18 822.80 million 3,236
2017 470,540,563.38 470.54 million 2,301
2018 250,885,031.30 250.89 million 739
2019 209,111,734.38 209.11 million 411
2020 193,742,678.99 193.74 million 320
2021 100,871,412.77 100.87 million 187
2022 -5,687,782.11 -5.69 million 80
2023 -4,492,857.81 -4.49 million 62
2024 -2,223,846.22 -2.22 million 45
2025 -1,128,436.47 -1.13 million 26

Insight

Obligations for PIID 0020 under Agency 9700 declined sharply over the 10-year window, falling from 822.80 million in 2016 to 100.87 million in 2021 before turning negative from 2022 through 2025. Award volume also contracted materially, dropping from 3,236 awards in 2016 to 26 in 2025, indicating a marked reduction in activity over time. The pattern suggests spending is highly concentrated in the earlier years, with recent years reflecting limited and net deobligating activity.

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.