This page summarizes award number 0011 for agency 9700 over the last full year. The record reflects -123,686.33 in total obligated value across 54 award actions, for an average action value of -2,290.49.
Award Number
Award Number 9700 / 0011 Federal Contract Action Summary (Last Year)
Award number 0011 for agency 9700 shows last full year obligation activity totaling -123.69 thousand across 54 actions.
All values are based on the last full year analysis window and the exact obligated total of -123,686.33.
Overview
Award number 0011 for agency 9700 is an award-level record for the last full year analysis window. It shows a total obligated value of -123,686.33 across 54 award actions, with an average action value of -2,290.49.
How to use this page
Use this page to review award-level obligation activity for PIID 0011 within agency 9700. The figures support quick comparison of total obligated value, action count, and average action value for the selected period.
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 = '0011'
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,208,206.18 | 2.21 million | 14 |
| 97AS | DEFENSE LOGISTICS AGENCY | -343.70 | -343.70 | 2 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -1,020.32 | -1.02 thousand | 7 |
| 9761 | DEFENSE THREAT REDUCTION AGENCY (DTRA) | -10,000.00 | -10.00 thousand | 1 |
| 97AK | DEFENSE INFORMATION SYSTEMS AGENCY (DISA) | -94,725.94 | -94.73 thousand | 3 |
| 5700 | DEPT OF THE AIR FORCE | -635,108.76 | -635.11 thousand | 8 |
| 1700 | DEPT OF THE NAVY | -1,590,693.79 | -1.59 million | 19 |
Insight
Award PIID 0011 is highly concentrated in the DEPT OF THE ARMY, which accounts for 14 awards and $2.21 million in obligations over the past year. The remaining activity is spread across six other agencies, with the largest offsets from the DEPT OF THE NAVY (-$1.59 million across 19 awards) and DEPT OF THE AIR FORCE (-$635.11 thousand across 8 awards). Smaller negative obligation adjustments are recorded for DTRA, DISA, DCMA, and DLA, indicating mixed interagency financial activity rather than a single-direction funding pattern.
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 = '0011'
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,278,533.60 | 2.28 million | 5 |
| BONNEVILLE POWER ADMINISTRATION | 0CNP5 | 228,098.78 | 228.10 thousand | 2 |
| BLACK & VEATCH SPECIAL PROJECTS CORP | 03JT9 | 24,522.86 | 24.52 thousand | 2 |
| ULTISAT, INC. | 3H9E0 | 3,434.33 | 3.43 thousand | 1 |
| LEIDOS, INC. | 7LQ18 | 2,659.90 | 2.66 thousand | 1 |
| BAE SYSTEMS LAND & ARMAMENTS INC. | 064S4 | 0.00 | 0.00 | 1 |
| BOEING COMPANY, THE | 76301 | 0.00 | 0.00 | 2 |
| JACOBS TECHNOLOGY INC. | 67JZ8 | 0.00 | 0.00 | 1 |
| HOWE MACHINE & TOOL CORP. | 65777 | 0.00 | 0.00 | 1 |
| LOCKHEED MARTIN CORPORATION | 64059 | 0.00 | 0.00 | 1 |
Insight
Award PIID 0011 is highly concentrated in JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC, which accounts for $2.28 million across 5 awards and far exceeds all other vendors in this 1-year window. BONNEVILLE POWER ADMINISTRATION is a distant second at $228.10 thousand across 2 awards, while the remaining active vendors each received less than $25 thousand. Several additional vendors appear with award counts but zero obligated dollars, indicating limited or non-obligated activity relative to the primary incumbent.
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 = '0011'
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 | 890,387.47 | 890.39 thousand | 20 |
| 238990 | ALL OTHER SPECIALTY TRADE CONTRACTORS | 228,098.78 | 228.10 thousand | 2 |
| 541310 | ARCHITECTURAL SERVICES | 24,522.86 | 24.52 thousand | 2 |
| 517919 | ALL OTHER TELECOMMUNICATIONS | 3,434.33 | 3.43 thousand | 1 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 2,659.90 | 2.66 thousand | 1 |
| 332994 | SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING | 0.00 | 0.00 | 1 |
| 334220 | RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING | 0.00 | 0.00 | 1 |
| 334119 | OTHER COMPUTER PERIPHERAL EQUIPMENT MANUFACTURING | 0.00 | 0.00 | 1 |
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 0.00 | 0.00 | 1 |
| 561621 | SECURITY SYSTEMS SERVICES (EXCEPT LOCKSMITHS) | 0.00 | 0.00 | 3 |
Insight
Obligations under PIID 0011 are highly concentrated in NAICS 541330, Engineering Services, which accounts for $890.39 thousand across 20 awards and dominates the 1-year period. The next largest category, NAICS 238990, All Other Specialty Trade Contractors, is materially smaller at $228.10 thousand across 2 awards, indicating a steep drop-off after the top code. Remaining obligated activity is limited to NAICS 541310, 517919, and 541611, while several additional NAICS codes appear only as zero-obligation awards, suggesting a broader award distribution without corresponding funded obligations.
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 = '0011'
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,256,498.11 | 2.26 million | 7 |
| C124 | UTILITIES | 228,098.78 | 228.10 thousand | 2 |
| C211 | ARCHITECT AND ENGINEERING- GENERAL: LANDSCAPING, INTERIOR LAYOUT, AND DESIGNING | 24,522.86 | 24.52 thousand | 3 |
| D316 | IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT | 3,434.33 | 3.43 thousand | 1 |
| R499 | SUPPORT- PROFESSIONAL: OTHER | 0.00 | 0.00 | 3 |
| K016 | MODIFICATION OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES | 0.00 | 0.00 | 1 |
| AC17 | R&D- DEFENSE SYSTEM: AIRCRAFT (COMMERCIALIZED) | 0.00 | 0.00 | 1 |
| 3590 | MISCELLANEOUS SERVICE AND TRADE EQUIPMENT | 0.00 | 0.00 | 1 |
| 1005 | GUNS, THROUGH 30MM | 0.00 | 0.00 | 1 |
| 1410 | GUIDED MISSILES | 0.00 | 0.00 | 1 |
Insight
Obligations are concentrated in PSC R425, which accounts for $2.26 million across 7 awards and represents the clear dominant share of activity in the period. C124 is a distant second at $228.10 thousand across 2 awards, while the remaining PSCs are low-dollar or zero-obligation entries, indicating a highly skewed distribution. Several PSCs show award counts but no obligated value, suggesting inactive, no-cost, or not-yet-funded actions within the 1-year window.
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 = '0011'
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 | -123,686.33 | -123.69 thousand | 54 |
Insight
For award PIID 0011 under agency 9700, the 1-year annual trend shows a single reported year: FY 2025. Obligations total -$123,686.33 across 54 awards, indicating a relatively high award count with negative net obligated value in the period. With only one year present, no year-over-year trend can be assessed from this window.
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.