Award Number

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

Federal procurement profile for award number 0026 under agency ID 9700, showing obligation and action history over the last 10 years.

This page summarizes the federal award identified by PIID 0026 for agency ID 9700. Over the last 10 years, the award shows 5,517 actions and total obligated dollars of 1.56 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided 10-year analysis window, with exact obligated dollars of 1,564,406,002.75 and an average action value of 283,560.99.

Agency ID
9700
PIID
0026
Type
Award
Total Obligated
1.56 billion
1,564,406,002.75
Actions
5,517
Average Action Value
283,560.99

Overview

The award record for PIID 0026 shows total obligated spending of 1,564,406,002.75 across 5,517 actions in the last 10 years. The average action value is 283,560.99, indicating repeated procurement activity within the analysis window.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value at a glance. It is suited for FPDS-style inspection of award history tied to agency ID 9700 and award number 0026.

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 = '0026'
    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
5700 DEPT OF THE AIR FORCE 572,880,530.93 572.88 million 686
2100 DEPT OF THE ARMY 279,960,135.81 279.96 million 1,387
1700 DEPT OF THE NAVY 271,976,556.43 271.98 million 1,116
97AS DEFENSE LOGISTICS AGENCY 238,220,227.63 238.22 million 1,722
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 159,957,655.74 159.96 million 164
97JC MISSILE DEFENSE AGENCY (MDA) 77,529,738.46 77.53 million 97
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 15,327,100.67 15.33 million 72
9776 USTRANSCOM 3,503,103.60 3.50 million 17
97BZ DEFENSE FINANCE AND ACCOUNTING SERVICE (DFAS) 1,964,565.51 1.96 million 10
97DH DEFENSE HEALTH AGENCY (DHA) 687,945.84 687.95 thousand 11

Insight

Over the 10-year window for PIID 0026, obligations are highly concentrated at the top three agencies: the Department of the Air Force, Department of the Army, and Department of the Navy together account for the bulk of the listed obligated dollars. The Air Force is the largest recipient at $572.88 million across 686 awards, well ahead of the Army ($279.96 million across 1,387 awards) and Navy ($271.98 million across 1,116 awards). Outside these three, obligations decline sharply, with the Defense Logistics Agency, DISA, and MDA forming a secondary tier and all remaining agencies at materially lower dollar levels.

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 = '0026'
        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
THE BOEING COMPANY 81205 372,467,376.57 372.47 million 113
LOCKHEED MARTIN CORPORATION 155,976,740.13 155.98 million 45
LEIDOS INNOVATIONS CORPORATION 7LQ18 94,312,856.62 94.31 million 40
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 58,843,830.92 58.84 million 37
RAYTHEON COMPANY 3W1D7 48,298,458.57 48.30 million 61
GEORGIA TECH APPLIED RESEARCH CORPORATION 1FEZ4 45,825,965.84 45.83 million 99
BELL BOEING JOINT PROJECT OFFICE 44,096,812.00 44.10 million 5
BOEING COMPANY, THE 41,270,574.71 41.27 million 6
GENERAL ELECTRIC COMPANY 99207 36,700,394.50 36.70 million 6
THE BOEING COMPANY 33,545,953.00 33.55 million 17

Insight

Obligations for PIID 0026 are concentrated among a small set of vendors over the 10-year window, with THE BOEING COMPANY accounting for the largest share at $372.47 million across 113 awards. The next highest obligations are substantially lower, led by LOCKHEED MARTIN CORPORATION at $155.98 million and LEIDOS INNOVATIONS CORPORATION at $94.31 million, indicating a steep drop-off after the top vendor. Award counts are more dispersed than dollars, with GEORGIA TECH APPLIED RESEARCH CORPORATION (99 awards) and RAYTHEON COMPANY (61 awards) showing high transaction frequency despite lower obligated amounts. Multiple Boeing name variants also appear separately, suggesting vendor-name fragmentation within this 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 = '0026'
    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
336411 AIRCRAFT MANUFACTURING 605,786,253.78 605.79 million 271
517110 WIRED TELECOMMUNICATIONS CARRIERS 155,345,716.11 155.35 million 67
324110 PETROLEUM REFINERIES 154,845,185.24 154.85 million 357
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 93,407,540.79 93.41 million 138
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 85,677,379.77 85.68 million 292
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING 75,905,789.87 75.91 million 137
541330 ENGINEERING SERVICES 52,285,530.97 52.29 million 661
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 42,736,213.09 42.74 million 23
541519 OTHER COMPUTER RELATED SERVICES 39,958,421.33 39.96 million 61
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 26,284,143.07 26.28 million 253

Insight

Over the 10-year window, obligations under PIID 0026 are concentrated in aircraft and related industrial/technical NAICS codes. Aircraft Manufacturing (NAICS 336411) is the dominant category at $605.79 million across 271 awards, well above the next highest categories, while several related lines—Wired Telecommunications Carriers, Petroleum Refineries, and Aerospace/engineering services—each account for materially smaller shares. Award volume is more dispersed than dollars, with Engineering Services (661 awards) and Petroleum Refineries (357 awards) generating many actions but less obligated value than Aircraft Manufacturing, indicating a mix of high-value aviation awards and lower-dollar, higher-frequency transactions.

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 = '0026'
    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
1560 AIRFRAME STRUCTURAL COMPONENTS 411,109,359.15 411.11 million 162
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 156,217,637.99 156.22 million 74
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 109,992,187.44 109.99 million 219
AC15 R&D- DEFENSE SYSTEM: AIRCRAFT (OPERATIONAL SYSTEMS DEVELOPMENT) 93,873,526.00 93.87 million 32
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 83,149,324.46 83.15 million 73
AC26 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (MANAGEMENT/SUPPORT) 69,906,032.87 69.91 million 65
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 55,983,120.02 55.98 million 130
1680 MISCELLANEOUS AIRCRAFT ACCESSORIES AND COMPONENTS 44,853,344.04 44.85 million 50
9140 FUEL OILS 44,684,287.49 44.68 million 142
1510 AIRCRAFT, FIXED WING 44,396,051.72 44.40 million 28

Insight

Obligations under PIID 0026 are concentrated in aircraft-related materiel, led by PSC 1560 (Airframe Structural Components) at $411.11 million across 162 awards, far exceeding all other categories. The next largest obligations are much smaller and are split across telecommunications network management, fuel/propellants, and multiple R&D and support PSCs, indicating a diversified but secondary spend profile outside core aircraft components. Award counts are broader than dollar concentration suggests, especially for fuel and other recurring supply categories, which have many awards but materially lower obligated amounts than PSC 1560.

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 = '0026'
    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 618,006,792.01 618.01 million 2,440
2017 659,935,418.37 659.94 million 1,839
2018 235,313,861.29 235.31 million 504
2019 77,453,892.46 77.45 million 266
2020 17,612,054.80 17.61 million 162
2021 -7,810,488.74 -7.81 million 112
2022 -6,351,743.53 -6.35 million 61
2023 -16,350,628.72 -16.35 million 58
2024 -10,207,508.99 -10.21 million 50
2025 -3,195,646.20 -3.20 million 25

Insight

Obligations are highly concentrated in 2016–2017, which together account for the largest annual totals at 618.01 million and 659.94 million, with award counts of 2,440 and 1,839. After 2017, obligations decline sharply each year, falling to 235.31 million in 2018 and below 20 million by 2020, while award counts also contract from 504 in 2018 to 162 in 2020. From 2021 onward, annual net obligations are negative and remain negative through 2025, indicating sustained downward activity or reversals in recorded obligations, with volumes also reduced to 25 awards in 2025.

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.