Award Number

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

Award number 0012 for agency 9700 covers 12,965 actions over the last 10 years, with $3.89 billion obligated.

This page summarizes federal procurement activity for award number 0012 under agency ID 9700 across the last 10 years. The record shows 12,965 award actions and total obligations of $3,892,008,886.03.

Generated at 03/20/2026

Analysis period: Last 10 years

Average action value is $300,193.51, based on the reported obligated amount and action count.

Agency ID
9700
PIID
0012
Type
Award
Total Obligated
3.89 billion
3,892,008,886.03
Actions
12,965
Average Action Value
300,193.51

Overview

The award record for PIID 0012 shows sustained procurement activity across the last 10 years. Total obligations are $3,892,008,886.03, with 12,965 recorded actions and an average action value of $300,193.51.

How to use this page

Use this page to review the scale and cadence of obligations associated with award number 0012. The figures support quick comparison of total obligated amount, action volume, and average action value within agency ID 9700.

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 = '0012'
    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,442,762,054.09 1.44 billion 3,994
1700 DEPT OF THE NAVY 1,056,404,051.39 1.06 billion 3,257
5700 DEPT OF THE AIR FORCE 650,770,345.50 650.77 million 1,407
97AS DEFENSE LOGISTICS AGENCY 393,679,553.11 393.68 million 3,007
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 119,587,933.93 119.59 million 200
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 111,684,508.47 111.68 million 140
9776 USTRANSCOM 69,342,309.10 69.34 million 42
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 28,476,478.35 28.48 million 226
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) 9,963,708.49 9.96 million 27
97JC MISSILE DEFENSE AGENCY (MDA) 9,928,736.27 9.93 million 98

Insight

Obligations for PIID 0012 over the 10-year window are concentrated among a small set of DoD agencies, led by the Department of the Army ($1.44B; 3,994 awards) and the Department of the Navy ($1.06B; 3,257 awards). The Department of the Air Force is a distant third at $650.77M across 1,407 awards, followed by the Defense Logistics Agency at $393.68M across 3,007 awards. All remaining listed agencies each account for less than $120M, indicating a steep drop-off after the top four agencies and a highly concentrated obligation pattern.

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 = '0012'
        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
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 372,695,179.87 372.70 million 196
TORCH TECHNOLOGIES INC 3CBV3 204,579,008.36 204.58 million 143
BELL BOEING JOINT PROJECT OFFICE 184,652,031.10 184.65 million 2
BELL BOEING JOINT PROJECT OFFICE 3B1R2 174,696,694.17 174.70 million 21
OSHKOSH DEFENSE, LLC 129,913,354.41 129.91 million 10
GENERAL ELECTRIC COMPANY 96,373,245.62 96.37 million 23
JANUS GLOBAL OPERATIONS LLC 91,705,968.06 91.71 million 3
VIASAT, INC. 47358 77,162,786.00 77.16 million 24
HONEYWELL INTERNATIONAL INC. 40931 69,415,985.10 69.42 million 44
AM GENERAL LLC 0H3G6 68,080,987.00 68.08 million 6

Insight

Obligations under PIID 0012 are concentrated among a small set of vendors over the 10-year window, with Massachusetts Institute of Technology ($372.70 million, 196 awards) and Torch Technologies Inc ($204.58 million, 143 awards) leading both value and volume. A second tier of vendors also received substantial funding, including Bell Boeing Joint Project Office ($184.65 million across 2 awards and $174.70 million across 21 awards), Oshkosh Defense, LLC ($129.91 million), and General Electric Company ($96.37 million). Award activity is uneven across vendors, with several large-dollar recipients appearing on relatively few awards, indicating a mix of high-value and recurring smaller-value 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 = '0012'
    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) 773,794,872.75 773.79 million 981
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 380,096,147.14 380.10 million 359
541330 ENGINEERING SERVICES 349,171,859.50 349.17 million 1,805
324110 PETROLEUM REFINERIES 249,221,299.07 249.22 million 408
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 185,488,542.86 185.49 million 829
336212 TRUCK TRAILER MANUFACTURING 151,362,770.05 151.36 million 19
561210 FACILITIES SUPPORT SERVICES 135,919,013.89 135.92 million 378
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 126,122,817.88 126.12 million 105
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 117,112,358.13 117.11 million 147
336411 AIRCRAFT MANUFACTURING 113,803,085.43 113.80 million 221

Insight

Over the 10-year window, obligations under PIID 0012 are concentrated in a small set of NAICS codes, led by 541712 at $773.79 million across 981 awards. The next largest categories—336413, 541330, and 324110—each exceed $249 million, indicating substantial spend across research, aerospace, engineering, and petroleum-related activities. Award volume is more dispersed than dollars, with 541330 carrying the highest count at 1,805 awards but a lower obligated total than 541712, suggesting many smaller actions in that category. Overall, the profile indicates sustained, multi-industry contracting with a few dominant spending 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 = '0012'
    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
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 385,030,056.09 385.03 million 203
1520 AIRCRAFT, ROTARY WING 361,458,603.12 361.46 million 36
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 343,537,996.15 343.54 million 799
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 210,916,789.53 210.92 million 27
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 176,249,548.12 176.25 million 263
5821 RADIO AND TELEVISION COMMUNICATION EQUIPMENT, AIRBORNE 116,496,763.11 116.50 million 53
R499 SUPPORT- PROFESSIONAL: OTHER 115,550,759.47 115.55 million 495
F108 ENVIRONMENTAL SYSTEMS PROTECTION- ENVIRONMENTAL REMEDIATION 102,249,466.62 102.25 million 105
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 95,996,990.28 96.00 million 106
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 83,759,936.07 83.76 million 53

Insight

Over the 10-year window, obligations for agency 9700, PIID 0012 are concentrated in a small set of PSCs, led by AC61 at $385.03 million across 203 awards and 1520 at $361.46 million across 36 awards. The mix is weighted toward R&D, professional support, and aviation-related commodities, with R425 ($343.54 million) and R499 ($115.55 million) contributing substantial volume through high award counts. Several lower-ranked PSCs still exceed $80 million, indicating a broad but uneven distribution of obligations across recurring technical, platform, and logistics 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 = '0012'
    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 1,782,169,980.24 1.78 billion 5,444
2017 933,205,020.43 933.21 million 4,135
2018 679,003,306.84 679.00 million 1,488
2019 189,950,405.86 189.95 million 652
2020 106,945,105.17 106.95 million 478
2021 63,777,905.72 63.78 million 316
2022 60,183,562.55 60.18 million 176
2023 35,159,189.12 35.16 million 120
2024 28,422,333.81 28.42 million 100
2025 13,192,076.29 13.19 million 56

Insight

Obligations for PIID 0012 under Agency ID 9700 declined sharply over the 10-year window, falling from $1.78 billion in 2016 to $13.19 million in 2025. Award volume also contracted materially, from 5,444 awards in 2016 to 56 in 2025, indicating a substantial reduction in both dollars and transaction count. The activity is heavily concentrated in the earlier years, with 2016–2018 accounting for the vast majority of obligated dollars before tapering to comparatively low annual levels after 2019.

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.