Award Number

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

Award number 0010 for agency 9700 over the last 10 years shows 15,408 actions and $5.50 billion in obligated value.

This page summarizes procurement activity for award 0010 within agency ID 9700 across the last 10 years. The record includes 15,408 award actions with total obligated value of $5,497,199,464.52.

Generated at 03/20/2026

Analysis period: Last 10 years

Average action value across the analysis window is $356,775.67, based on the provided obligated total and action count.

Agency ID
9700
PIID
0010
Type
Award
Total Obligated
5.50 billion
5,497,199,464.52
Actions
15,408
Average Action Value
356,775.67

Overview

The award record for PIID 0010 under agency ID 9700 reflects sustained procurement activity over the last 10 years. Total obligated value is $5,497,199,464.52 across 15,408 actions, with an average action value of $356,775.67. These figures indicate a high-volume award history within the selected period.

How to use this page

Use this page to review the overall scale of award 0010 and compare its obligation and action counts against other awards. The summary supports basic trend analysis, contract research, and FPDS-style filtering by award number and agency ID within the 10-year 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 = '0010'
    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,163,442,749.79 2.16 billion 5,033
5700 DEPT OF THE AIR FORCE 1,791,819,731.54 1.79 billion 1,777
1700 DEPT OF THE NAVY 709,977,340.49 709.98 million 3,470
97AS DEFENSE LOGISTICS AGENCY 420,780,247.25 420.78 million 3,619
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 190,518,292.67 190.52 million 256
9776 USTRANSCOM 79,379,875.16 79.38 million 58
97JC MISSILE DEFENSE AGENCY (MDA) 79,201,105.20 79.20 million 177
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 30,772,234.53 30.77 million 148
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 30,498,804.43 30.50 million 90
97DH DEFENSE HEALTH AGENCY (DHA) 21,955,184.75 21.96 million 62

Insight

Obligations for PIID 0010 over the 10-year window are concentrated primarily within the military departments, led by the Department of the Army at $2.16 billion across 5,033 awards and the Department of the Air Force at $1.79 billion across 1,777 awards. The Department of the Navy adds another $709.98 million across 3,470 awards, bringing the top three agencies to the clear majority of obligated dollars. Below that, obligations drop sharply: the Defense Logistics Agency and USSOCOM are the next largest recipients at $420.78 million and $190.52 million, while the remaining agencies each account for less than $80 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 = '0010'
        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 1,003,667,626.56 1.00 billion 218
KELLOGG BROWN AND ROOT SERVICES INCORPORATED (1250) 3GJU9 616,480,947.47 616.48 million 123
OSHKOSH DEFENSE, LLC 75Q65 285,848,703.98 285.85 million 45
LOCKHEED MARTIN CORPORATION 81755 224,422,981.67 224.42 million 22
L-3 COMMUNICATIONS CORPORATION 97,460,864.68 97.46 million 47
OSHKOSH DEFENSE, LLC 97,398,370.95 97.40 million 12
LOCKHEED MARTIN CORPORATION 96,846,166.58 96.85 million 51
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 77,731,163.88 77.73 million 249
PATRIOT TEAM 74,549,988.95 74.55 million 11
BAE SYSTEMS ORDNANCE SYSTEMS INC. 69,806,986.24 69.81 million 2

Insight

Obligations are concentrated among a small set of vendors over the 10-year window, with Massachusetts Institute of Technology leading at $1.00 billion across 218 awards and Kellogg Brown and Root Services Incorporated next at $616.48 million across 123 awards. The remaining top vendors each received materially less, ranging from $285.85 million for Oshkosh Defense, LLC to $69.81 million for BAE Systems Ordnance Systems Inc., indicating a steep drop-off after the top two recipients. Several vendors appear more than once under slightly different entries, including Oshkosh Defense and Lockheed Martin, which suggests vendor-name or CAGE-code fragmentation in the award history.

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 = '0010'
    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) 1,413,480,330.54 1.41 billion 1,336
561210 FACILITIES SUPPORT SERVICES 653,069,756.76 653.07 million 531
541330 ENGINEERING SERVICES 425,341,564.24 425.34 million 1,913
336212 TRUCK TRAILER MANUFACTURING 383,309,698.44 383.31 million 48
324110 PETROLEUM REFINERIES 255,204,258.58 255.20 million 463
336411 AIRCRAFT MANUFACTURING 236,498,117.16 236.50 million 276
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 199,048,535.63 199.05 million 975
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 110,396,710.33 110.40 million 342
541211 OFFICES OF CERTIFIED PUBLIC ACCOUNTANTS 108,434,199.77 108.43 million 27
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 99,307,791.40 99.31 million 66

Insight

For Agency 9700, PIID 0010 over the 10-year window, obligations are concentrated in NAICS 541712, which accounts for $1.41 billion across 1,336 awards. The next largest categories are 561210 ($653.07 million; 531 awards) and 541330 ($425.34 million; 1,913 awards), indicating a strong emphasis on R&D, facilities support, and engineering services. A smaller set of higher-obligation manufacturing and construction codes, including 336212, 324110, 336411, and 236220, also contribute materially, while award counts vary widely, suggesting the obligation base is concentrated in fewer high-dollar NAICS categories rather than evenly distributed.

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 = '0010'
    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) 1,033,549,745.04 1.03 billion 227
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 577,733,886.04 577.73 million 256
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 376,098,912.42 376.10 million 1,078
2305 GROUND EFFECT VEHICLES 304,433,995.59 304.43 million 32
1510 AIRCRAFT, FIXED WING 235,794,448.32 235.79 million 65
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 223,089,678.67 223.09 million 320
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 117,212,359.79 117.21 million 210
R704 SUPPORT- MANAGEMENT: AUDITING 108,434,199.77 108.43 million 27
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 102,893,140.49 102.89 million 23
1410 GUIDED MISSILES 101,219,611.40 101.22 million 34

Insight

Over the 10-year window, obligations for PIID 0010 are concentrated in R&D and support PSCs, led by AC61 at $1.03 billion across 227 awards and R706 at $577.73 million across 256 awards. R425 is the highest-volume code by award count (1,078 awards) but ranks third in dollars, indicating a broad distribution of smaller obligations. The remaining top PSCs are more mixed across equipment, fuels, and platform categories, with each contributing roughly $100 million to $304 million, suggesting a diversified but still defense-oriented obligation profile.

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 = '0010'
    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,981,452,810.86 1.98 billion 6,449
2017 1,729,174,662.89 1.73 billion 4,876
2018 630,322,102.66 630.32 million 1,667
2019 439,167,636.70 439.17 million 851
2020 263,661,746.42 263.66 million 582
2021 129,969,820.51 129.97 million 403
2022 103,648,592.15 103.65 million 236
2023 96,647,894.63 96.65 million 162
2024 39,154,671.18 39.15 million 110
2025 83,999,526.52 84.00 million 72

Insight

Obligations for PIID 0010 declined sharply over the period, falling from 1.98 billion across 6,449 awards in 2016 to 84.00 million across 72 awards in 2025. Activity was heavily concentrated in the earlier years: 2016 and 2017 together accounted for 3.71 billion and 11,325 awards, while annual obligations dropped below 700 million beginning in 2018 and stayed below 130 million from 2021 through 2025. The pattern indicates a sustained contraction in both dollar value and award volume, with only a modest uptick in obligated dollars in 2025 relative to 2024.

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.