Award Number

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

Federal procurement overview for award number 0016 under agency ID 9700, covering the last 10 years of recorded action activity.

This page summarizes award number 0016 for agency ID 9700 over the last 10 years. The record shows 9,034 award actions with total obligated value of $2.00 billion and an average action value of $221,463.79.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and reflect the exact obligated amount of 2,000,703,878.88 across 9,034 actions.

Agency ID
9700
PIID
0016
Type
Award
Total Obligated
2.00 billion
2,000,703,878.88
Actions
9,034
Average Action Value
221,463.79

Overview

Award number 0016 under agency ID 9700 records 9,034 actions in the last 10 years. The total obligated amount is $2,000,703,878.88, with an average action value of $221,463.79. This page provides a concise procurement snapshot for the award record.

How to use this page

Use this page to review the award-level volume and obligated funding associated with PIID 0016. The figures support basic procurement analysis, record lookup, and trend review within the stated 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 = '0016'
    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 571,874,933.51 571.87 million 2,610
5700 DEPT OF THE AIR FORCE 356,325,227.30 356.33 million 1,041
1700 DEPT OF THE NAVY 354,255,482.33 354.26 million 2,075
97AS DEFENSE LOGISTICS AGENCY 274,983,807.11 274.98 million 2,259
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 195,248,927.46 195.25 million 218
97JC MISSILE DEFENSE AGENCY (MDA) 103,219,641.65 103.22 million 147
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 95,123,866.38 95.12 million 76
97DH DEFENSE HEALTH AGENCY (DHA) 36,434,385.38 36.43 million 23
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 13,909,064.22 13.91 million 105
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 9,053,076.24 9.05 million 54

Insight

Over the 10-year window, obligations on PIID 0016 are concentrated in the military departments, led by the Department of the Army at $571.87 million across 2,610 awards, followed by the Air Force and Navy at $356.33 million and $354.26 million, respectively. Defense Logistics Agency also represents a major share at $274.98 million across 2,259 awards, indicating broad departmental and DLA participation rather than reliance on a single buyer. Outside these top four, obligations drop materially, with the next highest agency, DISA, at $195.25 million, and the remaining agencies each below $104 million, suggesting a steep decline in spend concentration beyond the core defense 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 = '0016'
        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
DATA SYSTEMS ANALYSTS, INC. 4D266 127,366,176.32 127.37 million 42
BOEING COMPANY, THE 80,295,633.56 80.30 million 32
BOEING COMPANY, THE 88277 79,079,433.72 79.08 million 12
BOEING COMPANY, THE 76301 76,750,873.73 76.75 million 74
URS FEDERAL SERVICES INTERNATIONAL, INC 5XPQ8 59,901,974.40 59.90 million 26
DATA SYSTEMS ANALYSTS, INC. 53,536,051.85 53.54 million 15
OSHKOSH DEFENSE, LLC 75Q65 49,766,322.95 49.77 million 21
ALION SCIENCE AND TECHNOLOGY CORPORATION 3BM47 36,078,008.17 36.08 million 81
LOCKHEED MARTIN CORPORATION 3VQB0 32,839,124.09 32.84 million 41
CLINICOMP INTERNATIONAL, INC. 27,014,880.00 27.01 million 2

Insight

Obligations under PIID 0016 are concentrated among a small set of vendors over the 10-year window, with DATA SYSTEMS ANALYSTS, INC. leading at $127.37 million across 42 awards. Boeing appears in three separate vendor/CAGE entries and, in aggregate, accounts for a substantial share of activity, indicating obligations are spread across multiple Boeing identifiers rather than a single record. The remaining top vendors form a long tail, with only ALION SCIENCE AND TECHNOLOGY CORPORATION combining a relatively high award count (81) with a more moderate obligation total of $36.08 million.

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 = '0016'
    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) 409,518,907.92 409.52 million 688
336411 AIRCRAFT MANUFACTURING 208,172,199.00 208.17 million 214
541330 ENGINEERING SERVICES 202,193,938.95 202.19 million 1,207
324110 PETROLEUM REFINERIES 181,458,736.32 181.46 million 406
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 82,812,926.02 82.81 million 99
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 82,209,432.96 82.21 million 502
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 81,219,890.99 81.22 million 114
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 79,441,100.04 79.44 million 170
611519 OTHER TECHNICAL AND TRADE SCHOOLS 53,744,340.15 53.74 million 8
336212 TRUCK TRAILER MANUFACTURING 51,945,536.53 51.95 million 24

Insight

Obligations under award PIID 0016 are concentrated in technical and industrial NAICS categories, led by 541712 (R&D in the physical, engineering, and life sciences) at $409.52 million across 688 awards. The next largest categories—336411 (Aircraft Manufacturing), 541330 (Engineering Services), and 324110 (Petroleum Refineries)—each exceed $181 million, indicating a diversified but still concentrated mix across R&D, manufacturing, and engineering. Award counts are more dispersed than dollars, with 541330 posting the highest volume at 1,207 awards but only the third-highest obligated amount, while 611519 and 336212 account for relatively large obligations on comparatively few awards.

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 = '0016'
    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
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 207,462,994.47 207.46 million 158
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 187,210,776.30 187.21 million 596
9130 LIQUID PROPELLANTS AND FUELS, PETROLEUM BASE 150,617,959.47 150.62 million 283
K016 MODIFICATION OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES 116,501,707.53 116.50 million 96
AZ12 R&D- OTHER RESEARCH AND DEVELOPMENT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 84,786,390.08 84.79 million 201
1510 AIRCRAFT, FIXED WING 80,932,962.30 80.93 million 15
Y1BG CONSTRUCTION OF ELECTRONIC AND COMMUNICATIONS FACILITIES 78,401,974.40 78.40 million 29
U006 EDUCATION/TRAINING- VOCATIONAL/TECHNICAL 53,696,111.65 53.70 million 13
2320 TRUCKS AND TRUCK TRACTORS, WHEELED 51,534,840.75 51.53 million 21
AC22 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 41,128,830.96 41.13 million 37

Insight

For award PIID 0016 over the 10-year window, obligations are concentrated in a small set of PSCs, led by D399 at $207.46 million and R425 at $187.21 million. The next tier includes 9130, K016, and AZ12, indicating meaningful spend across fuels, aircraft modification, and R&D rather than a single category. Award volume is more dispersed than dollars in several PSCs, particularly R425 with 596 awards and 9130 with 283 awards, suggesting repeated smaller actions alongside larger obligations.

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 = '0016'
    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,006,009,701.73 1.01 billion 4,084
2017 693,589,369.73 693.59 million 2,951
2018 225,894,862.10 225.89 million 934
2019 73,140,986.34 73.14 million 423
2020 5,066,033.91 5.07 million 241
2021 -5,229,433.34 -5.23 million 173
2022 -4,272,049.84 -4.27 million 82
2023 2,178,279.92 2.18 million 61
2024 4,268,705.06 4.27 million 57
2025 57,423.27 57.42 thousand 28

Insight

Obligations for PIID 0016 were heavily concentrated in the earlier years of the 10-year window, declining from 1.01 billion across 4,084 awards in 2016 to 693.59 million in 2017 and 225.89 million in 2018. The annual obligated amount then fell sharply to 73.14 million in 2019 and 5.07 million in 2020, followed by negative net obligations in 2021 and 2022. Activity remained low in 2023 through 2025, with obligations between 57.42 thousand and 4.27 million and award counts reduced to 28-61 per year.

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.