Award Number

Award Number 9700 / 0012 Federal Contract Action Summary (Last 5 Years)

Procurement summary for award number 0012 under agency ID 9700 over the last 5 years.

This award page summarizes obligation activity for PIID 0012 across the last 5 years. The record shows 768 award actions with total obligations of 200,735,067.49 and an average action value of 261,373.79.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and should be read as award-level totals for agency ID 9700 and PIID 0012.

Agency ID
9700
PIID
0012
Type
Award
Total Obligated
200.74 million
200,735,067.49
Actions
768
Average Action Value
261,373.79

Overview

The award record for PIID 0012 under agency ID 9700 reflects steady procurement activity over the last 5 years. Total obligated amount is 200,735,067.49 across 768 actions, with an average action value of 261,373.79.

How to use this page

Use this page to review award-level obligation totals, action volume, and average action value for PIID 0012. It provides a compact summary for comparing this award against other agency procurement records in the same analysis 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 = '0012'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 156,940,149.44 156.94 million 159
2100 DEPT OF THE ARMY 53,520,873.42 53.52 million 234
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 1,034,842.46 1.03 million 8
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 261,474.25 261.47 thousand 6
97JC MISSILE DEFENSE AGENCY (MDA) -14,785.55 -14.79 thousand 11
97DH DEFENSE HEALTH AGENCY (DHA) -129,853.50 -129.85 thousand 6
97AS DEFENSE LOGISTICS AGENCY -200,944.03 -200.94 thousand 24
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) -433,751.80 -433.75 thousand 27
9776 USTRANSCOM -973,481.16 -973.48 thousand 2
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -1,910,217.98 -1.91 million 17

Insight

Obligations for award PIID 0012 over the past 5 years are concentrated in two agencies: the Department of the Air Force at $156.94 million across 159 awards and the Department of the Army at $53.52 million across 234 awards. All remaining agencies are far smaller by obligated value, with USSOCOM the largest of the rest at $1.03 million, while several agencies show net negative obligations, including DTRA (-$1.91 million), USTRANSCOM (-$973.48 thousand), and DISA (-$433.75 thousand). The distribution indicates a dominant concentration with limited lower-tier participation and multiple downward adjustments or deobligations across other 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 = '0012'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 156,816,852.15 156.82 million 109
HONEYWELL INTERNATIONAL INC. 40931 31,279,229.08 31.28 million 18
TORCH TECHNOLOGIES INC 3CBV3 16,041,331.38 16.04 million 31
POND CONSTRUCTORS, INC 1RJT2 8,788,479.24 8.79 million 11
SOLPAC CONSTRUCTION, INC. 4LZF6 2,952,406.36 2.95 million 14
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 2,863,075.69 2.86 million 21
ZUHAIR FAYEZ PARTNERSHIP SZY08 1,690,401.64 1.69 million 11
JOB OPTIONS, INCORPORATED 026C2 1,658,677.66 1.66 million 7
LOCKHEED MARTIN CORPORATION 16331 1,493,670.43 1.49 million 7
CONTRACK WATTS, INC. 0SS74 1,248,229.27 1.25 million 2

Insight

Over the past 5 years, award obligations for PIID 0012 under Agency 9700 are highly concentrated, with Massachusetts Institute of Technology accounting for $156.82 million across 109 awards, far exceeding all other vendors. Honeywell International Inc. is a distant second at $31.28 million, while the remaining vendors each received less than $16.1 million, indicating a steep drop-off after the top two recipients. The distribution is broad in award count but uneven in dollars, with several vendors receiving multiple awards yet relatively modest obligated amounts.

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 = '0012'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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) 170,499,791.10 170.50 million 187
561210 FACILITIES SUPPORT SERVICES 35,774,330.21 35.77 million 47
213112 SUPPORT ACTIVITIES FOR OIL AND GAS OPERATIONS 8,788,479.24 8.79 million 11
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 5,627,535.11 5.63 million 37
333319 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 1,449,033.43 1.45 million 8
237110 WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION 1,385,427.00 1.39 million 12
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 1,320,030.58 1.32 million 14
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 810,446.82 810.45 thousand 2
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 715,287.48 715.29 thousand 5
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 400,000.00 400.00 thousand 1

Insight

Obligations over the 5-year window are highly concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (Except Biotechnology), which accounts for $170.50 million across 187 awards and far exceeds every other code. The next largest category, NAICS 561210 Facilities Support Services, totals $35.77 million across 47 awards, indicating a substantial but much smaller secondary concentration. The remaining NAICS codes are comparatively fragmented, each ranging from about $8.79 million down to $400 thousand, with award counts generally in the low double digits or fewer.

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 = '0012'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 156,816,852.15 156.82 million 109
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 34,142,304.77 34.14 million 39
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 14,306,503.53 14.31 million 84
Z1NA MAINTENANCE OF FUEL SUPPLY FACILITIES 8,788,479.24 8.79 million 11
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 4,200,635.63 4.20 million 17
C214 ARCHITECT AND ENGINEERING- GENERAL: MANAGEMENT ENGINEERING 1,687,272.64 1.69 million 13
S201 HOUSEKEEPING- CUSTODIAL JANITORIAL 1,658,677.65 1.66 million 8
6910 TRAINING AIDS 1,446,035.79 1.45 million 10
Z1AZ MAINTENANCE OF OTHER ADMINISTRATIVE FACILITIES AND SERVICE BUILDINGS 1,380,755.21 1.38 million 18
J052 MAINT/REPAIR/REBUILD OF EQUIPMENT- MEASURING TOOLS 988,735.52 988.74 thousand 4

Insight

Obligations are heavily concentrated in PSC AC61, which accounts for 156.82 million across 109 awards and far exceeds all other listed categories. The next highest PSC, H935, totals 34.14 million, while the remaining PSCs each fall below 14.31 million, indicating a pronounced long-tail distribution. Award activity is also dispersed across multiple support, maintenance, and construction categories, but at materially lower dollar values than the dominant R&D line.

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 = '0012'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 63,777,905.72 63.78 million 316
2022 60,183,562.55 60.18 million 176
2023 35,159,189.12 35.16 million 120
2024 28,422,333.81 28.42 million 100
2025 13,192,076.29 13.19 million 56

Insight

Obligations and award counts for PIID 0012 declined steadily over the five-year period, falling from $63.78 million across 316 awards in 2021 to $13.19 million across 56 awards in 2025. The largest year-over-year reduction occurred between 2022 and 2023, when obligations dropped by more than $25 million and award volume fell from 176 to 120. This pattern indicates a sustained contraction in both funding and transaction activity, with the most recent years carrying a much smaller share of total obligated dollars and 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.