Award Number

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

Award 0017 for agency 9700 shows 8,332 actions over the last 10 years, with $1.81 billion obligated in total.

This page summarizes federal procurement activity for award 0017 under agency 9700 across the last 10 years. The record includes 8,332 award actions and $1,811,122,107.12 in total obligated dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are based on the provided analysis window and represent total obligated value and average action value across all recorded actions.

Agency ID
9700
PIID
0017
Type
Award
Total Obligated
1.81 billion
1,811,122,107.12
Actions
8,332
Average Action Value
217,369.43

Overview

Over the last 10 years, award 0017 under agency 9700 recorded 8,332 actions and $1,811,122,107.12 in total obligated value. The average action value across the period was $217,369.43. These figures provide a compact view of award-level activity for the selected entity.

How to use this page

Use this page to review the scale and frequency of procurement activity tied to award 0017. The totals support quick comparison across awards, while the action count and average action value help frame the distribution of obligated dollars over time.

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 = '0017'
    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 638,321,617.32 638.32 million 2,492
5700 DEPT OF THE AIR FORCE 301,697,763.56 301.70 million 994
97AS DEFENSE LOGISTICS AGENCY 290,539,503.07 290.54 million 2,162
1700 DEPT OF THE NAVY 282,427,959.32 282.43 million 1,727
97JC MISSILE DEFENSE AGENCY (MDA) 205,007,437.34 205.01 million 173
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 56,735,789.45 56.74 million 206
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 26,240,355.97 26.24 million 83
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 18,507,503.81 18.51 million 49
9776 USTRANSCOM 5,077,861.43 5.08 million 15
97AZ DEFENSE COMMISSARY AGENCY (DECA) 5,065,786.28 5.07 million 34

Insight

Obligations under PIID 0017 are concentrated among a small set of defense agencies over the 10-year window, led by the Department of the Army at $638.32 million across 2,492 awards. The Department of the Air Force, Defense Logistics Agency, and Department of the Navy follow at $301.70 million, $290.54 million, and $282.43 million, respectively, indicating a broad but defense-centric distribution of spending. The Missile Defense Agency is a notable outlier, with $205.01 million across only 173 awards, suggesting higher average obligation per award than several higher-volume recipients. Lower-obligation activity is comparatively limited, with the remaining agencies each under $57 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 = '0017'
        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
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 103,696,672.17 103.70 million 31
LOCKHEED MARTIN CORPORATION 3VQB0 94,025,554.74 94.03 million 76
ROLLS-ROYCE CORPORATION 61,141,738.32 61.14 million 5
PARSONS GOVERNMENT SERVICES INC. 47,576,472.79 47.58 million 11
LOCKHEED MARTIN CORPORATION 45,458,107.28 45.46 million 55
GEORGIA TECH APPLIED RESEARCH CORPORATION 31,751,600.00 31.75 million 8
BOEING COMPANY, THE 76301 29,487,873.47 29.49 million 48
DRS NETWORK & IMAGING SYSTEMS, LLC 32865 29,188,932.00 29.19 million 7
CRAY INC. 26,559,500.00 26.56 million 2
BAE SYSTEMS ORDNANCE SYSTEMS INC. 1LF48 25,660,000.00 25.66 million 6

Insight

Over the 10-year window, obligations under PIID 0017 are concentrated among a small set of vendors, led by GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. at $103.70 million across 31 awards and LOCKHEED MARTIN CORPORATION at a combined $139.48 million across 131 awards when both listed entries are considered. The remaining top vendors each account for materially smaller totals, ranging from $25.66 million to $61.14 million, indicating a long tail beyond the top two providers. Award counts vary widely relative to obligated dollars, with some vendors receiving many smaller awards and others fewer, higher-value 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 = '0017'
    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) 236,858,006.21 236.86 million 562
336411 AIRCRAFT MANUFACTURING 196,836,614.93 196.84 million 212
541330 ENGINEERING SERVICES 185,131,422.22 185.13 million 925
324110 PETROLEUM REFINERIES 165,493,924.59 165.49 million 377
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 108,610,300.95 108.61 million 127
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 88,408,542.40 88.41 million 55
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 86,684,483.56 86.68 million 182
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 70,820,938.48 70.82 million 469
541512 COMPUTER SYSTEMS DESIGN SERVICES 43,905,251.98 43.91 million 146
517110 WIRED TELECOMMUNICATIONS CARRIERS 33,771,706.05 33.77 million 38

Insight

Obligations are concentrated in a small set of NAICS codes, led by 541712 at $236.86 million across 562 awards, followed by 336411 at $196.84 million and 541330 at $185.13 million. The mix indicates a strong emphasis on research and development, aircraft manufacturing, engineering, and related technical services, with additional material obligation in petroleum refining and computer programming. Award volume is more dispersed than dollars, as 541330 and 236220 have high award counts but do not lead in obligated value, suggesting many smaller awards alongside a few larger expenditure 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 = '0017'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 165,789,550.34 165.79 million 475
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 130,837,922.05 130.84 million 237
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 110,006,811.58 110.01 million 85
AC24 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (ENGINEERING DEVELOPMENT) 105,607,666.02 105.61 million 80
1560 AIRFRAME STRUCTURAL COMPONENTS 82,779,852.40 82.78 million 93
8415 CLOTHING, SPECIAL PURPOSE 54,560,478.30 54.56 million 71
J028 MAINT/REPAIR/REBUILD OF EQUIPMENT- ENGINES, TURBINES, AND COMPONENTS 53,977,358.13 53.98 million 14
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 52,185,514.91 52.19 million 124
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 45,199,581.83 45.20 million 147
AD93 R&D- DEFENSE OTHER: OTHER (ADVANCED DEVELOPMENT) 44,198,496.72 44.20 million 88

Insight

Obligations for agency 9700, PIID 0017 are concentrated in a mix of professional support, fuels, logistics, and R&D PSCs over the 10-year window. R425 leads with $165.79 million across 475 awards, followed by 9130 at $130.84 million across 237 awards, indicating substantial recurring spend in both services and petroleum-based supplies. The remaining top PSCs each range from $44.20 million to $110.01 million, with smaller award counts in several higher-dollar categories such as J028, suggesting less frequent but larger-value actions in maintenance and technical development.

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 = '0017'
    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 823,279,701.47 823.28 million 3,764
2017 643,254,226.58 643.25 million 2,735
2018 272,755,041.56 272.76 million 811
2019 62,291,274.50 62.29 million 403
2020 10,043,832.25 10.04 million 250
2021 -714,965.75 -714.97 thousand 145
2022 -2,028,444.63 -2.03 million 87
2023 -257,544.35 -257.54 thousand 53
2024 652,441.91 652.44 thousand 52
2025 1,846,543.58 1.85 million 32

Insight

Award activity for PIID 0017 under Agency 9700 is heavily concentrated in the earlier years of the 10-year window. Obligations declined sharply from $823.28 million across 3,764 awards in 2016 to $10.04 million across 250 awards in 2020, followed by negative net obligations in 2021 through 2023, indicating significant downward movement and adjustments. Activity remained comparatively low in 2024 and 2025, with obligations of $652.44 thousand and $1.85 million, respectively, across 52 and 32 awards.

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.