Award Number

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

Federal procurement profile for award number 0003 at agency 9700 over the last 10 years, showing 41,149 award actions and $15.12 billion obligated.

This page summarizes award number 0003 for agency 9700 across the last 10 years. The award records 41,149 actions and $15,123,624,928.61 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures reflect the provided analysis window and may differ from current FPDS totals if records are updated.

Agency ID
9700
PIID
0003
Type
Award
Total Obligated
15.12 billion
15,123,624,928.61
Actions
41,149
Average Action Value
367,533.23

Overview

In the last 10 years, award number 0003 for agency 9700 accounted for 41,149 award actions and $15,123,624,928.61 in total obligated value. The average action value across the period was $367,533.23, indicating a high volume of recorded activity under this award. These figures describe the award-level history captured in the provided analysis window.

How to use this page

Use this page to review the scale and activity level of award number 0003 at agency 9700. The totals support basic award tracking, trend review, and comparison against other award records in the same agency or time period.

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 = '0003'
    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 7,281,851,786.56 7.28 billion 16,086
5700 DEPT OF THE AIR FORCE 2,982,118,997.47 2.98 billion 5,508
1700 DEPT OF THE NAVY 2,423,008,855.31 2.42 billion 8,664
97AS DEFENSE LOGISTICS AGENCY 1,017,772,826.55 1.02 billion 6,693
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 482,624,288.05 482.62 million 517
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 339,084,595.60 339.08 million 564
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 312,001,731.73 312.00 million 523
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 143,339,960.67 143.34 million 346
97JC MISSILE DEFENSE AGENCY (MDA) 105,998,234.88 106.00 million 331
97DH DEFENSE HEALTH AGENCY (DHA) 55,785,566.26 55.79 million 153

Insight

Over the 10-year window, obligations under PIID 0003 are concentrated primarily among the military departments: the Department of the Army leads with $7.28 billion across 16,086 awards, followed by the Department of the Air Force at $2.98 billion and the Department of the Navy at $2.42 billion. Defense Logistics Agency is the largest non-service organization in the set, with $1.02 billion and 6,693 awards, indicating a broader distribution beyond the core military departments but still a clear concentration at the top. The remaining agencies each account for substantially smaller shares, with no other entity exceeding $482.62 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 = '0003'
        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
BOEING COMPANY, THE 741,089,922.48 741.09 million 88
AMENTUM SERVICES, INC. 5W3V7 646,559,500.51 646.56 million 205
GENERAL DYNAMICS LAND SYSTEMS INC. 7W356 500,491,787.51 500.49 million 67
URS FEDERAL SERVICES, INC. 5W3V7 456,313,174.66 456.31 million 124
NORTHROP GRUMMAN SYSTEMS CORPORATION 78022 393,626,457.77 393.63 million 123
MARITIME HELICOPTER SUPPORT COMPANY LLC 1QPG2 267,014,721.24 267.01 million 12
AMERICAN ORDNANCE LLC 14912 250,408,108.22 250.41 million 88
AECOM MANAGEMENT SERVICES, INC. 5W3V7 198,352,870.56 198.35 million 59
CARNEGIE MELLON UNIVERSITY 0LCF8 182,110,557.67 182.11 million 49
NORTHROP GRUMMAN SYSTEMS CORPORATION 178,938,989.64 178.94 million 116

Insight

Obligations over the 10-year window are concentrated among a small set of vendors, with BOEING COMPANY, THE leading at $741.09 million across 88 awards and AMENTUM SERVICES, INC. close behind at $646.56 million across 205 awards. The remaining top vendors each fall below $500.50 million, indicating a steep drop after the top two and a broader but still materially concentrated distribution among defense, systems, and support contractors. NORTHROP GRUMMAN SYSTEMS CORPORATION appears twice with different CAGE values, suggesting separate vendor records in the dataset and a combined presence of over $572.56 million across 239 awards.

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 = '0003'
    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) 2,084,568,695.43 2.08 billion 5,307
541330 ENGINEERING SERVICES 1,688,243,905.89 1.69 billion 5,650
561210 FACILITIES SUPPORT SERVICES 1,615,383,848.45 1.62 billion 1,188
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,248,423,306.90 1.25 billion 334
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 703,336,310.84 703.34 million 2,570
336411 AIRCRAFT MANUFACTURING 603,719,659.08 603.72 million 667
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 572,257,673.39 572.26 million 1,886
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 570,376,918.40 570.38 million 195
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 459,396,990.08 459.40 million 889
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 396,458,759.35 396.46 million 734

Insight

Obligations are concentrated in research, engineering, and facilities support activities, led by NAICS 541712 at $2.08 billion and NAICS 541330 at $1.69 billion. The top ten NAICS codes also include major manufacturing and construction categories, indicating a mixed portfolio spanning R&D, technical services, aerospace, ammunition, and infrastructure support. Award volume is not strictly aligned with dollars: 541330 has the highest award count (5,650) while 332993 and 336992 carry comparatively high obligations with far fewer awards, suggesting larger individual action values in those categories.

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 = '0003'
    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
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 1,434,511,378.67 1.43 billion 898
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 829,981,563.39 829.98 million 2,455
1325 BOMBS 814,811,681.55 814.81 million 56
R499 SUPPORT- PROFESSIONAL: OTHER 648,328,844.61 648.33 million 1,593
2350 COMBAT, ASSAULT, AND TACTICAL VEHICLES, TRACKED 528,016,089.70 528.02 million 74
1510 AIRCRAFT, FIXED WING 505,383,904.20 505.38 million 226
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 423,300,314.05 423.30 million 868
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 361,416,331.60 361.42 million 398
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 345,639,910.27 345.64 million 364
1320 AMMUNITION, OVER 125MM 313,858,614.99 313.86 million 137

Insight

Over the 10-year window, obligations for award PIID 0003 under agency 9700 are concentrated in a small set of PSCs, led by R706 at $1.43 billion across 898 awards. Professional support codes R425 and R499 together account for another $1.48 billion, but with much higher award counts, indicating a broad distribution of smaller awards relative to the top logistics line. Material obligations also appear in weapons, vehicles, aircraft, and R&D PSCs, including 1325, 2350, 1510, AZ12, and AC61, suggesting a mix of sustainment, production, and technical support activity rather than reliance on a single category.

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 = '0003'
    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 6,350,438,590.07 6.35 billion 15,816
2017 3,873,923,762.81 3.87 billion 11,676
2018 2,374,804,796.93 2.37 billion 5,546
2019 933,613,479.30 933.61 million 3,016
2020 531,166,553.67 531.17 million 1,965
2021 376,927,874.45 376.93 million 1,248
2022 227,921,270.15 227.92 million 747
2023 176,464,160.53 176.46 million 515
2024 144,709,427.96 144.71 million 401
2025 133,655,012.74 133.66 million 219

Insight

Obligations for award PIID 0003 under Agency 9700 declined sharply over the 10-year period, falling from 6.35 billion in 2016 to 133.66 million in 2025. Award volume also contracted materially, from 15,816 awards in 2016 to 219 in 2025, with the steepest reductions occurring between 2016 and 2019. The pattern indicates a sustained downward concentration in both dollars and transaction count rather than a cyclical fluctuation.

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.