Award Number

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

Federal procurement award page for award number 0011 under agency ID 9700, summarizing activity over the last 10 years.

This page summarizes award number 0011 for agency ID 9700 over the last 10 years. The record shows 13,882 actions with total obligations of $3.89 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures are based on the provided 10-year analysis window; total obligated is $3,894,791,817.53 and average action value is $280,564.17.

Agency ID
9700
PIID
0011
Type
Award
Total Obligated
3.89 billion
3,894,791,817.53
Actions
13,882
Average Action Value
280,564.17

Overview

Award number 0011 under agency ID 9700 shows sustained procurement activity across the last 10 years. The award records 13,882 actions and $3,894,791,817.53 in total obligated dollars, with an average action value of $280,564.17.

How to use this page

Use this page to review the scale and cadence of obligations tied to award 0011. The action count, total obligated amount, and average action value provide a basic profile for trend review and comparison within the agency context.

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 = '0011'
    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,579,568,508.70 1.58 billion 4,382
1700 DEPT OF THE NAVY 1,058,088,232.79 1.06 billion 3,329
5700 DEPT OF THE AIR FORCE 429,995,559.67 430.00 million 1,559
97AS DEFENSE LOGISTICS AGENCY 401,107,411.08 401.11 million 3,177
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 131,105,834.64 131.11 million 144
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 117,139,901.81 117.14 million 198
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 89,188,512.51 89.19 million 246
9776 USTRANSCOM 56,763,803.70 56.76 million 73
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 17,773,100.71 17.77 million 66
97JC MISSILE DEFENSE AGENCY (MDA) 17,696,376.00 17.70 million 87

Insight

Over the 10-year window, obligations under PIID 0011 are heavily concentrated in the DEPT OF THE ARMY and DEPT OF THE NAVY, which together account for about 2.64 billion across 7,711 awards. The DEPT OF THE AIR FORCE and DEFENSE LOGISTICS AGENCY form a second tier at roughly 430.00 million and 401.11 million, respectively, indicating a materially broader but still defense-centric distribution. Remaining obligations are distributed across smaller shares to DTRA, USSOCOM, DISA, USTRANSCOM, WHS, and MDA, each below 132 million.

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 = '0011'
        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 229,492,574.62 229.49 million 55
OSHKOSH DEFENSE, LLC 189,096,320.25 189.10 million 11
BELL BOEING JOINT PROJECT OFFICE 132,078,568.92 132.08 million 8
GENERAL ELECTRIC COMPANY 119,313,133.63 119.31 million 13
DATA LINK SOLUTIONS L.L.C. 081U3 89,761,357.50 89.76 million 35
STA FZ-LLC 75,542,546.04 75.54 million 1
TORCH TECHNOLOGIES INC 3CBV3 65,205,243.11 65.21 million 51
ERAPSCO 64,573,026.20 64.57 million 2
DATA LINK SOLUTIONS L.L.C. 58,116,849.50 58.12 million 2
GENERAL DYNAMICS LAND SYSTEMS INC. 7W356 54,650,419.00 54.65 million 70

Insight

Obligations under PIID 0011 are concentrated among a small set of vendors, led by OSHKOSH DEFENSE, LLC at $229.49 million across 55 awards, with an additional $189.10 million tied to the same vendor name without a CAGE code. The remaining top obligations are spread across a mix of contractors and joint entities, including BELL BOEING JOINT PROJECT OFFICE ($132.08 million), GENERAL ELECTRIC COMPANY ($119.31 million), and DATA LINK SOLUTIONS L.L.C. in two entries totaling $147.88 million. Award counts vary materially, with several high-dollar vendors supported by relatively few awards, indicating a mix of large discrete obligations and more frequent smaller awards over the 10-year window.

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 = '0011'
    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) 446,251,815.71 446.25 million 878
541330 ENGINEERING SERVICES 437,366,281.06 437.37 million 2,137
336212 TRUCK TRAILER MANUFACTURING 423,220,546.77 423.22 million 60
324110 PETROLEUM REFINERIES 239,789,051.66 239.79 million 416
336411 AIRCRAFT MANUFACTURING 188,866,143.83 188.87 million 392
334290 OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING 161,259,707.56 161.26 million 127
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 158,547,659.66 158.55 million 791
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 150,096,511.33 150.10 million 112
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 149,996,007.02 150.00 million 262
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 141,660,481.60 141.66 million 325

Insight

Over the 10-year window, obligations under award PIID 0011 are concentrated in a narrow set of technical and aerospace-related NAICS codes. NAICS 541712 and 541330 are the two largest categories by obligated dollars at $446.25 million and $437.37 million, respectively, while 336212 follows closely at $423.22 million despite far fewer awards (60), indicating high-dollar, lower-volume actions. The remaining top categories are also concentrated in defense, aviation, electronics, and construction-related codes, with no single category dominating the total, suggesting a diversified but technically specialized award portfolio.

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 = '0011'
    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
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 421,736,087.77 421.74 million 64
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 280,912,276.79 280.91 million 805
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 207,863,045.29 207.86 million 284
5821 RADIO AND TELEVISION COMMUNICATION EQUIPMENT, AIRBORNE 177,815,004.67 177.82 million 50
1510 AIRCRAFT, FIXED WING 155,254,800.57 155.25 million 231
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 135,855,171.95 135.86 million 272
1520 AIRCRAFT, ROTARY WING 130,264,073.50 130.26 million 19
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 104,243,592.95 104.24 million 138
U006 EDUCATION/TRAINING- VOCATIONAL/TECHNICAL 88,271,318.25 88.27 million 25
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 87,109,673.07 87.11 million 56

Insight

Over the 10-year window, obligations under PIID 0011 are concentrated in a small set of PSCs, led by 2320 Trucks and Truck Tractors, Wheeled at $421.74 million across 64 awards, followed by R425 engineering/technical support at $280.91 million across 805 awards and 9130 liquid propellants and fuels at $207.86 million across 284 awards. The mix indicates both high-dollar equipment and sustainment categories and a broader base of service and technical support obligations, with R425 and D399 accounting for large award counts relative to their obligated amounts. Aircraft-related PSCs (1510, 1520, 5821, and 2840) also represent a substantial share, consistent with a procurement portfolio centered on aviation and related mission support.

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 = '0011'
    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,027,731,636.52 2.03 billion 5,837
2017 1,040,336,096.78 1.04 billion 4,343
2018 569,835,980.25 569.84 million 1,488
2019 181,688,185.93 181.69 million 787
2020 65,647,058.16 65.65 million 567
2021 23,504,520.95 23.50 million 396
2022 -5,650,979.15 -5.65 million 201
2023 -5,144,660.53 -5.14 million 121
2024 -3,032,335.05 -3.03 million 88
2025 -123,686.33 -123.69 thousand 54

Insight

Obligations under PIID 0011 declined sharply over the 10-year period, falling from $2.03 billion in 2016 to $123.69 thousand negative in 2025. Award volume also contracted materially, from 5,837 awards in 2016 to 54 in 2025, indicating a steep reduction in annual activity. The series is heavily concentrated in the earlier years, with obligations dropping below $200 million by 2019 and turning negative beginning in 2022, which suggests subsequent deobligations or downward adjustments outweighed new obligations.

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.