Award Number

Award Number 9700 / 0001 Federal Contract Action Summary (Last Year)

Award number 0001 for agency 9700 shows 484 recorded actions over the last full year, with total obligations of 150.29 million.

This page summarizes award number 0001 for agency 9700 using last full year activity. The award shows 484 actions and $150,290,775.87 in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year analysis window and use the provided exact obligated amount and action count.

Agency ID
9700
PIID
0001
Type
Award
Total Obligated
150.29 million
150,290,775.87
Actions
484
Average Action Value
310,518.13

Overview

In the last full year, award number 0001 for agency 9700 recorded 484 actions. Total obligated value was $150,290,775.87, with an average action value of $310,518.13.

How to use this page

Use this page to review award-level activity for agency 9700 under PIID 0001. The figures support basic comparison of obligation volume and action frequency within the selected 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 = '0001'
    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 108,795,228.47 108.80 million 320
5700 DEPT OF THE AIR FORCE 25,716,103.61 25.72 million 29
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 15,282,515.53 15.28 million 10
1700 DEPT OF THE NAVY 5,538,752.37 5.54 million 29
9776 USTRANSCOM -25,000.00 -25.00 thousand 8
97DH DEFENSE HEALTH AGENCY (DHA) -120,699.19 -120.70 thousand 1
97AE DEFENSE ADVANCED RESEARCH PROJECTS AGENCY (DARPA) -130,834.85 -130.83 thousand 1
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) -134,789.60 -134.79 thousand 1
97JC MISSILE DEFENSE AGENCY (MDA) -165,118.77 -165.12 thousand 2
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -521,303.57 -521.30 thousand 1

Insight

For award PIID 0001 over the last year, obligations are highly concentrated in the DEPT OF THE ARMY, which accounts for $108.80 million across 320 awards, far exceeding all other listed agencies. The DEPT OF THE AIR FORCE ($25.72 million, 29 awards), DISA ($15.28 million, 10 awards), and DEPT OF THE NAVY ($5.54 million, 29 awards) represent the next largest positive obligation sources, but at materially lower levels. Several agencies show net negative obligations, led by DTRA (-$521.30 thousand) and smaller reductions at MDA, WHS, DARPA, DHA, and USTRANSCOM, indicating some deobligations or downward adjustments within the period.

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 = '0001'
        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
VECTRUS SYSTEMS CORPORATION 1D510 48,846,683.22 48.85 million 23
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 28,681,998.29 28.68 million 17
US MARINE MANAGEMENT INC 1XDZ5 17,539,062.89 17.54 million 19
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 15,287,252.17 15.29 million 9
AMENTUM SERVICES, INC. 5W3V7 15,086,745.50 15.09 million 29
KBRWYLE TECHNOLOGY SOLUTIONS, LLC 15151 13,260,870.72 13.26 million 13
SIEMENS GOVERNMENT TECHNOLOGIES, INC. 0DZG1 8,139,966.01 8.14 million 7
HONEYWELL INTERNATIONAL INC. 40931 4,747,046.58 4.75 million 5
SOUTHLAND INDUSTRIES 3LAE1 4,709,660.64 4.71 million 4
KONECRANES NUCLEAR EQUIPMENT & SERVICES, LLC 6V1C7 4,680,201.76 4.68 million 4

Insight

Vendor obligations under PIID 0001 are moderately concentrated, with VECTRUS SYSTEMS CORPORATION leading the past year at $48.85 million across 23 awards, followed by MASSACHUSETTS INSTITUTE OF TECHNOLOGY at $28.68 million across 17 awards. The remaining vendors each received between about $4.68 million and $17.54 million, indicating a broad secondary distribution rather than a single vendor monopolizing all activity. Amentum Services, Inc. has the highest award count in the set (29) but ranks fifth by obligated value, suggesting a higher number of smaller awards relative to the top-dollar recipients.

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 = '0001'
    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 92,261,641.68 92.26 million 121
541330 ENGINEERING SERVICES 36,407,914.79 36.41 million 131
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 28,362,695.72 28.36 million 47
333923 OVERHEAD TRAVELING CRANE, HOIST, AND MONORAIL SYSTEM MANUFACTURING 4,680,201.76 4.68 million 4
336611 SHIP BUILDING AND REPAIRING 3,739,424.97 3.74 million 10
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,445,236.23 1.45 million 5
336212 TRUCK TRAILER MANUFACTURING 434,363.68 434.36 thousand 4
238290 OTHER BUILDING EQUIPMENT CONTRACTORS 406,000.00 406.00 thousand 1
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 388,107.58 388.11 thousand 1
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 77,594.48 77.59 thousand 6

Insight

Obligations under PIID 0001 over the last year are concentrated in three NAICS codes: 561210 Facilities Support Services ($92.26 million across 121 awards), 541330 Engineering Services ($36.41 million across 131 awards), and 541712 R&D in the physical, engineering, and life sciences ($28.36 million across 47 awards). These three categories account for the vast majority of reported obligated value, indicating a strong emphasis on facilities support, engineering, and technical research support. The remaining NAICS codes are materially smaller, with each below $5 million and no comparable concentration outside the top three.

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 = '0001'
    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
J025 MAINT/REPAIR/REBUILD OF EQUIPMENT- VEHICULAR EQUIPMENT COMPONENTS 65,961,337.43 65.96 million 44
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 28,503,266.25 28.50 million 23
R799 SUPPORT- MANAGEMENT: OTHER 17,537,660.20 17.54 million 20
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 15,287,252.17 15.29 million 9
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 14,002,155.66 14.00 million 95
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 8,757,645.27 8.76 million 58
3950 WINCHES, HOISTS, CRANES, AND DERRICKS 4,680,201.76 4.68 million 4
1990 MISCELLANEOUS VESSELS 3,785,524.42 3.79 million 8
AC12 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; APPLIED RESEARCH 2,800,026.21 2.80 million 4
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 1,508,939.00 1.51 million 3

Insight

Obligations over the last year are concentrated in J025, MAINT/REPAIR/REBUILD OF EQUIPMENT- VEHICULAR EQUIPMENT COMPONENTS, which accounts for $65.96 million across 44 awards and exceeds every other PSC in the set by a wide margin. The next largest categories are much smaller: AC61 at $28.50 million across 23 awards and R799 at $17.54 million across 20 awards, indicating a sharp drop-off after the top code. Activity is otherwise distributed across a mix of support, engineering, IT, and R&D PSCs, with R425 posting the highest award count at 95 but only $14.00 million obligated, suggesting a more fragmented delivery pattern in that category.

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 = '0001'
    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 150,290,775.87 150.29 million 484

Insight

For PIID 0001 under Agency 9700, the 1-year annual trend is concentrated entirely in FY 2025, with $150.29 million obligated across 484 awards. This indicates a single-year obligation profile rather than a multi-year distribution within the observed window. The volume of awards suggests the obligation total is spread across a moderate number of actions, but no interannual trend can be assessed from the provided data.

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.