This page summarizes award number 0003 for agency 9700 using the last full year of FPDS activity. The award recorded 219 actions and 133,655,012.74 in total obligated value.
Award Number
Award Number 9700 / 0003 Federal Contract Action Summary (Last Year)
Award number 0003 for agency 9700 shows 219 award actions over the last full year, with total obligations of 133.66 million.
Values reflect the last full year and are shown as total obligated exact, total obligated readable, award action count, and average action value.
Overview
Award number 0003 for agency 9700 recorded 219 award actions in the last full year. Total obligated value was 133,655,012.74, which rounds to 133.66 million. The average action value was 610,296.86.
How to use this page
Use this page to review award activity volume and obligated value for the selected analysis window. The figures support basic comparison across awards, agencies, or reporting periods without adding assumptions beyond the FPDS counts and obligations shown here.
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 = '0003'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 111,641,995.43 | 111.64 million | 129 |
| 5700 | DEPT OF THE AIR FORCE | 24,650,446.21 | 24.65 million | 36 |
| 1700 | DEPT OF THE NAVY | 153,674.32 | 153.67 thousand | 15 |
| 97ZS | U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) | 31,788.61 | 31.79 thousand | 1 |
| 97AS | DEFENSE LOGISTICS AGENCY | -21,451.19 | -21.45 thousand | 7 |
| 97JC | MISSILE DEFENSE AGENCY (MDA) | -109,533.26 | -109.53 thousand | 1 |
| 97AK | DEFENSE INFORMATION SYSTEMS AGENCY (DISA) | -496,829.31 | -496.83 thousand | 4 |
| 9761 | DEFENSE THREAT REDUCTION AGENCY (DTRA) | -802,157.88 | -802.16 thousand | 2 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -1,392,920.19 | -1.39 million | 24 |
Insight
Obligations under PIID 0003 over the past year are heavily concentrated in the Department of the Army, which accounts for $111.64 million across 129 awards, followed by the Department of the Air Force with $24.65 million across 36 awards. All other agencies are at much lower levels, with the Department of the Navy and USSOCOM contributing only small positive obligations. Several agencies show negative obligated amounts, led by DCMA (-$1.39 million), DTRA (-$802.16 thousand), DISA (-$496.83 thousand), and smaller offsets from DLA and MDA, indicating net downward adjustments in those accounts.
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 = '0003'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 |
|---|---|---|---|---|
| AMENTUM SERVICES, INC. | 5W3V7 | 98,785,325.37 | 98.79 million | 37 |
| CARNEGIE MELLON UNIVERSITY | 0LCF8 | 21,236,404.43 | 21.24 million | 7 |
| BAE SYSTEMS ORDNANCE SYSTEMS INC | 6NDQ0 | 5,880,597.54 | 5.88 million | 6 |
| HONEYWELL INTERNATIONAL INC. | 40931 | 5,483,271.04 | 5.48 million | 8 |
| MASSACHUSETTS INSTITUTE OF TECHNOLOGY | 3G050 | 4,859,343.31 | 4.86 million | 9 |
| JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC | 1MN13 | 3,680,427.88 | 3.68 million | 3 |
| AECOM USA, INC. | 0CXR6 | 2,595,673.60 | 2.60 million | 2 |
| MINUTEMAN SECURITY SOLUTIONS LLC | 6WAW6 | 459,387.59 | 459.39 thousand | 1 |
| L-3 COMMUNICATIONS CORPORATION | 06401 | 410,593.00 | 410.59 thousand | 1 |
| APTIM FEDERAL SERVICES, LLC | 1YQ36 | 395,554.00 | 395.55 thousand | 1 |
Insight
Obligations are highly concentrated among a small number of vendors. AMENTUM SERVICES, INC. accounts for 98.79 million across 37 awards, far exceeding the next highest vendor, CARNEGIE MELLON UNIVERSITY, at 21.24 million across 7 awards. The remaining vendors each received less than 6 million, indicating a steep drop-off after the top two vendors and a long tail of smaller obligations.
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 = '0003'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 104,424,846.53 | 104.42 million | 51 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 24,596,835.50 | 24.60 million | 51 |
| 541330 | ENGINEERING SERVICES | 8,400,295.38 | 8.40 million | 35 |
| 334290 | OTHER COMMUNICATIONS EQUIPMENT MANUFACTURING | 430,249.57 | 430.25 thousand | 3 |
| 237120 | OIL AND GAS PIPELINE AND RELATED STRUCTURES CONSTRUCTION | 395,554.00 | 395.55 thousand | 1 |
| 334220 | RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING | 287,462.12 | 287.46 thousand | 6 |
| 237110 | WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION | 203,244.00 | 203.24 thousand | 1 |
| 336411 | AIRCRAFT MANUFACTURING | 95,758.63 | 95.76 thousand | 11 |
| 541614 | PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES | 58,626.12 | 58.63 thousand | 2 |
| 541519 | OTHER COMPUTER RELATED SERVICES | 21,776.93 | 21.78 thousand | 4 |
Insight
Obligations for agency 9700, PIID 0003 are highly concentrated in two NAICS categories over the trailing 1 year: 561210 Facilities Support Services ($104.42 million across 51 awards) and 541712 R&D in physical, engineering, and life sciences ($24.60 million across 51 awards). Together, these two categories account for the clear majority of obligated dollars among the listed NAICS codes, while 541330 Engineering Services adds a smaller but still material $8.40 million across 35 awards. The remaining NAICS codes are fragmented and low-dollar, with each contributing less than $0.5 million and generally only a handful of 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 = '0003'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 98,996,057.58 | 99.00 million | 49 |
| AC61 | R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) | 25,969,532.85 | 25.97 million | 21 |
| S216 | HOUSEKEEPING- FACILITIES OPERATIONS SUPPORT | 5,880,597.54 | 5.88 million | 6 |
| H935 | OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT | 5,483,271.04 | 5.48 million | 8 |
| R425 | SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL | 5,342,688.74 | 5.34 million | 22 |
| 6350 | MISCELLANEOUS ALARM, SIGNAL, AND SECURITY DETECTION SYSTEMS | 453,447.59 | 453.45 thousand | 2 |
| Y1PZ | CONSTRUCTION OF OTHER NON-BUILDING FACILITIES | 395,554.00 | 395.55 thousand | 1 |
| Y1NZ | CONSTRUCTION OF OTHER UTILITIES | 203,244.00 | 203.24 thousand | 1 |
| 1510 | AIRCRAFT, FIXED WING | 46,167.04 | 46.17 thousand | 6 |
| D307 | IT AND TELECOM- IT STRATEGY AND ARCHITECTURE | 31,788.61 | 31.79 thousand | 1 |
Insight
Obligations under PIID 0003 are highly concentrated in PSC R706, which accounts for about $99.0 million across 49 awards and far exceeds all other categories. AC61 is the second-largest PSC at $26.0 million across 21 awards, while the remaining PSCs each represent materially smaller shares, generally below $6.0 million. The mix indicates a portfolio dominated by logistics support and R&D, with smaller allocations spread across facilities operations, inspection, engineering support, and limited one-off construction and equipment procurements.
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 = '0003'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 133,655,012.74 | 133.66 million | 219 |
Insight
Within the 1-year window, this award records $133.66 million in total obligated amounts across 219 awards in 2025. Obligations are fully concentrated in a single reporting year, indicating no year-over-year distribution within the provided period. The award activity reflects a high volume of actions tied to one year rather than a multi-year 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.