Award Number

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

Federal award number 0016 for agency 9700 shows last full year obligation and action activity.

Award 0016 recorded 28 actions in the last full year. Total obligated amount was 57.42 thousand, or 57,423.27, with an average action value of 2,050.83.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may differ from future updates or broader reporting periods.

Agency ID
9700
PIID
0016
Type
Award
Total Obligated
57.42 thousand
57,423.27
Actions
28
Average Action Value
2,050.83

Overview

For the last full year, award 0016 under agency 9700 had 28 recorded actions and total obligated funding of 57,423.27. The average action value was 2,050.83, indicating relatively small individual action amounts across the period. This page summarizes the award at the PIID level using the provided obligations and action counts.

How to use this page

Use this page to review award-level activity for PIID 0016 within the specified analysis window. The figures support basic procurement analysis, such as comparing action volume and obligated dollars for this award against other awards or periods.

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 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 2,504,258.22 2.50 million 9
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 244,879.17 244.88 thousand 2
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 6,917.01 6.92 thousand 5
1700 DEPT OF THE NAVY 0.00 0.00 1
97JC MISSILE DEFENSE AGENCY (MDA) -488,682.43 -488.68 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -524,695.14 -524.70 thousand 5
5700 DEPT OF THE AIR FORCE -1,685,253.56 -1.69 million 4

Insight

For award PIID 0016 over the past year, obligations are concentrated in the DEPT OF THE ARMY, which accounts for $2.50 million across 9 awards and is the only major positive contributor. Other positive obligations are limited to DTRA, DISA, and DEPT OF THE NAVY, with comparatively small totals. Negative obligations are driven primarily by the DEPT OF THE AIR FORCE (-$1.69 million), DCMA (-$524.70 thousand), and MDA (-$488.68 thousand), indicating offsetting deobligations or adjustments across several defense agencies.

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 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
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 2,509,267.90 2.51 million 3
URS FEDERAL SERVICES INTERNATIONAL, INC 5XPQ8 244,879.17 244.88 thousand 3
FIBERTEK, INC. 8Y519 20,414.48 20.41 thousand 2
QWEST GOVERNMENT SERVICES INC 1XWZ7 4,179.48 4.18 thousand 3
ULTISAT, INC. 3H9E0 3,328.95 3.33 thousand 1
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 0.00 0.00 1
BAE SYSTEMS ORDNANCE SYSTEMS INC. 1LF48 0.00 0.00 1
QINETIQ INC. 1TAV2 0.00 0.00 1
DCS CORPORATION 1P418 0.00 0.00 1
SCIENCE APPLICATIONS INTERNATIONAL CORPORATION 6XWA8 -591.42 -591.42 1

Insight

Obligations under PIID 0016 in the past year are highly concentrated with JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC, which accounts for $2.51 million across 3 awards and far exceeds all other vendors. The next largest obligation is URS FEDERAL SERVICES INTERNATIONAL, INC at $244.88 thousand across 3 awards, with the remaining vendors each receiving $20.41 thousand or less or recording no net obligation. Several vendors have awards with $0 obligated, and one vendor, SCIENCE APPLICATIONS INTERNATIONAL CORPORATION, shows a small negative obligation of $591.42, indicating minor downward adjustment activity.

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 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
541330 ENGINEERING SERVICES 2,017,356.76 2.02 million 7
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 244,879.17 244.88 thousand 3
517110 WIRED TELECOMMUNICATIONS CARRIERS 4,179.48 4.18 thousand 3
517919 ALL OTHER TELECOMMUNICATIONS 3,328.95 3.33 thousand 1
336411 AIRCRAFT MANUFACTURING 0.00 0.00 1
325920 EXPLOSIVES MANUFACTURING 0.00 0.00 1
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING -1,978.31 -1.98 thousand 1
541512 COMPUTER SYSTEMS DESIGN SERVICES -23,445.85 -23.45 thousand 1
221210 NATURAL GAS DISTRIBUTION -33,375.42 -33.38 thousand 1
541511 CUSTOM COMPUTER PROGRAMMING SERVICES -488,682.43 -488.68 thousand 2

Insight

Obligations under PIID 0016 are concentrated in NAICS 541330, Engineering Services, which accounts for 7 awards and $2.02 million, far exceeding all other reported categories. The next largest positive obligations are in NAICS 541990 at $244.88 thousand across 3 awards, with the remaining positive amounts negligible by comparison. Several NAICS categories carry negative obligations, led by NAICS 541511 at -$488.68 thousand across 2 awards, indicating material downward adjustments that offset much of the positive activity in the period.

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 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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 2,485,230.63 2.49 million 5
Y1BG CONSTRUCTION OF ELECTRONIC AND COMMUNICATIONS FACILITIES 244,879.17 244.88 thousand 2
5810 COMMUNICATIONS SECURITY EQUIPMENT AND COMPONENTS 20,414.48 20.41 thousand 2
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 4,179.48 4.18 thousand 3
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 3,328.95 3.33 thousand 1
D301 IT AND TELECOM- FACILITY OPERATION AND MAINTENANCE 0.00 0.00 1
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 0.00 0.00 1
AD92 R&D- DEFENSE OTHER: OTHER (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 0.00 0.00 1
1376 BULK EXPLOSIVES 0.00 0.00 1
R499 SUPPORT- PROFESSIONAL: OTHER 0.00 0.00 1

Insight

Award obligations for PIID 0016 over the past year are heavily concentrated in PSC R425, which accounts for $2.49 million across 5 awards and far exceeds all other categories. The next largest PSC, Y1BG, totals $244.88 thousand across 2 awards, indicating a steep drop-off after the primary professional engineering/technical work. Remaining PSCs are comparatively small, with only minor obligations in 5810, D304, and D316, while five PSCs show awards recorded with no obligated dollars.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 57,423.27 57.42 thousand 28

Insight

For PIID 0016, the 1-year annual trend reflects obligations of $57.42 thousand in FY 2025 across 28 awards, indicating relatively dispersed funding activity at a modest dollar level. With only one year of data provided, no year-over-year trend can be assessed; the available record supports only a point-in-time view of award activity. The concentration appears low, given the number of awards relative to the total obligated amount.

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.