Award Number

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

Federal procurement analysis for award number 0005 at agency 9700 over the last 10 years, covering 29,850 actions and $13.10 billion obligated.

This page summarizes award number 0005 for agency 9700 across the last 10 years. It shows $13,095,722,850.79 in total obligated dollars across 29,850 award actions, with an average action value of $438,717.68.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may not align with other reporting periods or filters.

Agency ID
9700
PIID
0005
Type
Award
Total Obligated
13.10 billion
13,095,722,850.79
Actions
29,850
Average Action Value
438,717.68

Overview

Award number 0005 shows sustained activity across the last 10 years, with 29,850 actions recorded. Total obligated amount is $13,095,722,850.79, which averages $438,717.68 per action. These figures describe the scale and frequency of procurement activity tied to this award.

How to use this page

Use this page to review the volume and value of award activity associated with agency 9700 and PIID 0005. It is suited to quick reference, trend screening, and comparison against other awards when the same analysis window and filters are applied.

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 = '0005'
    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 6,927,746,076.37 6.93 billion 11,021
5700 DEPT OF THE AIR FORCE 2,479,288,693.67 2.48 billion 3,829
1700 DEPT OF THE NAVY 1,780,151,050.67 1.78 billion 6,405
97AS DEFENSE LOGISTICS AGENCY 656,122,379.65 656.12 million 5,544
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 571,838,669.00 571.84 million 500
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 212,047,579.97 212.05 million 348
9776 USTRANSCOM 170,643,212.24 170.64 million 124
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 129,741,724.00 129.74 million 285
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 100,776,043.75 100.78 million 215
97JC MISSILE DEFENSE AGENCY (MDA) 94,241,420.65 94.24 million 268

Insight

Obligations under PIID 0005 over the 10-year window are highly concentrated in the military departments, led by the Department of the Army at $6.93 billion across 11,021 awards, followed by the Department of the Air Force at $2.48 billion and the Department of the Navy at $1.78 billion. The top three agencies account for the clear majority of observed obligations, while the remaining activity is distributed across defense agencies at substantially lower levels. Defense Logistics Agency and DISA are the next largest recipients, but each is well below the military departments in obligated value, indicating a pronounced long-tail distribution across DoD components.

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 = '0005'
        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
FLUOR INTERCONTINENTAL INCORPORATED 1CZV4 2,539,962,754.06 2.54 billion 76
FLUOR INTERCONTINENTAL INCORPORATED 620,716,576.20 620.72 million 12
BOEING COMPANY, THE 585,866,585.52 585.87 million 73
ALLIANT TECHSYSTEMS OPERATIONS LLC 1PHL2 202,513,081.13 202.51 million 24
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 200,299,626.15 200.30 million 129
LOCKHEED MARTIN CORPORATION 04939 194,036,689.82 194.04 million 42
LOCKHEED MARTIN CORPORATION 81755 193,797,944.67 193.80 million 31
MANTECH TSG-2 JOINT VENTURE 6YN54 191,421,381.65 191.42 million 174
BOEING COMPANY, THE 18355 184,361,184.99 184.36 million 57
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 182,765,646.24 182.77 million 99

Insight

Obligations under PIID 0005 are concentrated among a small set of recurring vendors, with FLUOR INTERCONTINENTAL INCORPORATED accounting for the largest share at $2.54 billion across 76 awards, plus an additional $620.72 million under a separate row. Boeing, Lockheed Martin, and other large integrators also appear multiple times, indicating vendor fragmentation by CAGE code within the same contractor names rather than a single obligation stream. Award counts are high for several vendors, including Massachusetts Institute of Technology (129) and MANTECH TSG-2 JOINT VENTURE (174), suggesting a mix of high-value, lower-frequency awards and smaller, more numerous obligations 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 = '0005'
    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
561210 FACILITIES SUPPORT SERVICES 3,707,972,064.42 3.71 billion 1,285
336411 AIRCRAFT MANUFACTURING 1,531,697,069.22 1.53 billion 540
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,316,370,540.89 1.32 billion 3,073
541330 ENGINEERING SERVICES 1,132,341,280.49 1.13 billion 3,829
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 538,198,091.99 538.20 million 1,818
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 470,880,028.44 470.88 million 627
324110 PETROLEUM REFINERIES 307,584,406.34 307.58 million 472
541519 OTHER COMPUTER RELATED SERVICES 265,009,740.63 265.01 million 294
332992 SMALL ARMS AMMUNITION MANUFACTURING 213,005,804.29 213.01 million 43
334290 OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING 193,838,404.57 193.84 million 307

Insight

Over the 10-year window, obligations under PIID 0005 are concentrated in a small set of NAICS codes, led by Facilities Support Services at $3.71 billion across 1,285 awards. The next largest categories are Aircraft Manufacturing ($1.53 billion), R&D in the physical, engineering, and life sciences ($1.32 billion), and Engineering Services ($1.13 billion), indicating a portfolio centered on support services, aerospace, and technical/engineering work. Award volume is more diffuse than dollars, with Engineering Services and R&D generating the highest award counts but lower average dollar value per award than Facilities Support Services and Aircraft Manufacturing.

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 = '0005'
    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 3,413,530,730.33 3.41 billion 849
R499 SUPPORT- PROFESSIONAL: OTHER 932,272,503.26 932.27 million 1,132
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 611,879,030.20 611.88 million 1,817
1510 AIRCRAFT, FIXED WING 587,257,283.39 587.26 million 203
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 463,200,854.77 463.20 million 819
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 317,908,805.83 317.91 million 323
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 307,589,348.18 307.59 million 408
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 276,036,090.44 276.04 million 233
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 267,532,978.52 267.53 million 190
2995 MISCELLANEOUS ENGINE ACCESSORIES, AIRCRAFT 213,604,949.93 213.60 million 76

Insight

Over the 10-year window, obligations for PIID 0005 are concentrated in support services, led by R706 Support- Management: Logistics Support at $3.41 billion across 849 awards. The next largest categories are R499 and R425, with $932.27 million and $611.88 million respectively, indicating a strong emphasis on professional and engineering/technical support rather than a single dominant procurement type. Beyond services, material and technical categories such as 1510 Aircraft, Fixed Wing; 9130 Liquid Propellants and Fuels; and IT-related PSCs appear in smaller but still material amounts, suggesting a diversified award mix with notable aerospace, fuel, and IT spend.

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 = '0005'
    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 4,836,805,583.60 4.84 billion 11,874
2017 3,681,136,108.67 3.68 billion 8,837
2018 2,234,065,073.40 2.23 billion 3,794
2019 916,952,383.35 916.95 million 1,885
2020 768,670,274.40 768.67 million 1,276
2021 251,321,463.35 251.32 million 843
2022 107,693,609.33 107.69 million 534
2023 90,165,998.13 90.17 million 367
2024 149,246,664.04 149.25 million 273
2025 59,665,692.52 59.67 million 167

Insight

Award activity under PIID 0005 declined sharply over the 10-year window, with total obligations falling from $4.84 billion across 11,874 awards in 2016 to $59.67 million across 167 awards in 2025. The distribution is heavily front-loaded: obligations remained in the billions through 2018, then dropped below $1 billion in 2019 and continued to contract to low nine-figure or sub-$100 million levels in most later years. A brief uptick in 2024 to $149.25 million did not reverse the overall downward trend.

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.