This page presents FPDS award-level data for award number 0015 under agency ID 9700 over the last full year. The award shows 29 actions and total obligated amount of -471,108.08.
Award Number
Award Number 9700 / 0015 Federal Contract Action Summary (Last Year)
Award number 0015 for agency 9700 is summarized for the last full year, with 29 actions and net obligations of -471.11 thousand.
Totals reflect the analysis window provided and the exact obligated value of -471,108.08, which rounds to -471.11 thousand.
Overview
The award record for PIID 0015 under agency ID 9700 includes 29 recorded actions in the last full year. Net obligations for the period total -471,108.08, with an average action value of -16,245.11. These figures describe the award as captured in the provided analysis window.
How to use this page
Use this page to review the award’s action count and obligated amounts for the last full year. The summary supports quick comparison with other award records by showing both the exact obligation total and the average action value.
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 = '0015'
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 |
|---|---|---|---|---|
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 6 |
| 97AK | DEFENSE INFORMATION SYSTEMS AGENCY (DISA) | -1,473.66 | -1.47 thousand | 3 |
| 2100 | DEPT OF THE ARMY | -65,149.70 | -65.15 thousand | 12 |
| 1700 | DEPT OF THE NAVY | -183,083.07 | -183.08 thousand | 4 |
| 5700 | DEPT OF THE AIR FORCE | -221,401.65 | -221.40 thousand | 4 |
Insight
Within the 1-year window for PIID 0015, obligated activity is concentrated across a small set of defense agencies, with the Department of the Air Force carrying the largest net negative obligation (-221.40 thousand) across 4 awards. The Department of the Navy (-183.08 thousand, 4 awards) and the Department of the Army (-65.15 thousand, 12 awards) also account for substantial negative obligations, indicating the largest adjustment volume is concentrated in military components. DISA shows a small net negative amount (-1.47 thousand) across 3 awards, while DCMA has 6 awards with zero obligated amount, suggesting administrative activity without net funding impact.
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 = '0015'
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 |
|---|---|---|---|---|
| FLUOR INTERCONTINENTAL INCORPORATED | 1CZV4 | 74,173.97 | 74.17 thousand | 4 |
| THE BOEING COMPANY | 77272 | 8,188.01 | 8.19 thousand | 1 |
| ULTISAT, INC. | 3H9E0 | 3,434.33 | 3.43 thousand | 1 |
| GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. | 07MU1 | 0.00 | 0.00 | 2 |
| PARSONS GOVERNMENT SERVICES INC. | 1BVK6 | 0.00 | 0.00 | 1 |
| LOCKHEED MARTIN CORPORATION | 64059 | 0.00 | 0.00 | 1 |
| TRYCK NYMAN HAYES, INC. | 1LDU5 | 0.00 | 0.00 | 1 |
| SYSTEMS ENGINEERING SUPPORT CO. | 03HN2 | 0.00 | 0.00 | 1 |
| UNIVERSITY OF ALABAMA IN HUNTSVILLE | 9B944 | 0.00 | 0.00 | 1 |
| OCEANEERING INTERNATIONAL, INC | 1TVU1 | 0.00 | 0.00 | 1 |
Insight
For PIID 0015 over the last year, obligated dollars are concentrated primarily with FLUOR INTERCONTINENTAL INCORPORATED, which received 74.17 thousand across 4 awards, far exceeding the next highest recipient. THE BOEING COMPANY and ULTISAT, INC. account for much smaller obligated amounts at 8.19 thousand and 3.43 thousand, respectively, each on a single award. The remaining listed vendors received awards but show no obligated dollars, indicating a distribution skewed toward one funded vendor with several additional zero-obligation actions.
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 = '0015'
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 | 50,239.72 | 50.24 thousand | 6 |
| 517919 | ALL OTHER TELECOMMUNICATIONS | 3,434.33 | 3.43 thousand | 1 |
| 611710 | EDUCATIONAL SUPPORT SERVICES | 0.00 | 0.00 | 1 |
| 541519 | OTHER COMPUTER RELATED SERVICES | 0.00 | 0.00 | 1 |
| 334220 | RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING | 0.00 | 0.00 | 1 |
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 0.00 | 0.00 | 1 |
| 541330 | ENGINEERING SERVICES | -3,837.39 | -3.84 thousand | 4 |
| 541512 | COMPUTER SYSTEMS DESIGN SERVICES | -7,796.18 | -7.80 thousand | 1 |
| 335313 | SWITCHGEAR AND SWITCHBOARD APPARATUS MANUFACTURING | -69,010.25 | -69.01 thousand | 1 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | -117,437.72 | -117.44 thousand | 6 |
Insight
Obligations are concentrated in NAICS 561210, Facilities Support Services, which accounts for $50.24 thousand across 6 awards and is the only positive category of material size. The remaining activity is mixed and includes one additional positive NAICS, 517919, at $3.43 thousand, while several other codes carry zero obligations. The largest downward adjustments are in 541712 (-$117.44 thousand) and 335313 (-$69.01 thousand), indicating that the net profile over the past year is driven more by deobligations than new 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 = '0015'
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 | 74,173.97 | 74.17 thousand | 4 |
| 1650 | AIRCRAFT HYDRAULIC, VACUUM, AND DE-ICING SYSTEM COMPONENTS | 8,188.01 | 8.19 thousand | 1 |
| D316 | IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT | 3,434.33 | 3.43 thousand | 1 |
| K016 | MODIFICATION OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES | 0.00 | 0.00 | 1 |
| D307 | IT AND TELECOM- IT STRATEGY AND ARCHITECTURE | 0.00 | 0.00 | 1 |
| U008 | EDUCATION/TRAINING- TRAINING/CURRICULUM DEVELOPMENT | 0.00 | 0.00 | 1 |
| AD93 | R&D- DEFENSE OTHER: OTHER (ADVANCED DEVELOPMENT) | 0.00 | 0.00 | 1 |
| H258 | EQUIPMENT AND MATERIALS TESTING- COMMUNICATION, DETECTION, AND COHERENT RADIATION EQUIPMENT | 0.00 | 0.00 | 1 |
| AD92 | R&D- DEFENSE OTHER: OTHER (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) | 0.00 | 0.00 | 1 |
| 1410 | GUIDED MISSILES | 0.00 | 0.00 | 1 |
Insight
Obligations are concentrated in PSC R706 (Support- Management: Logistics Support), which accounts for 4 awards and $74.17 thousand, far exceeding all other PSCs in the 1-year window. The remaining obligations are limited to PSC 1650 at $8.19 thousand and D316 at $3.43 thousand, while the other listed PSCs have 1 award each with no obligated dollars recorded. Overall, the award activity is dispersed across multiple PSCs, but obligated funding is heavily concentrated in logistics support.
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 = '0015'
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 | -471,108.08 | -471.11 thousand | 29 |
Insight
In the 1-year window for award 0015 under agency 9700, 2025 reflects net deobligations of $471.11 thousand across 29 awards. This indicates a concentrated downward funding adjustment over the period rather than net growth. The activity is distributed across multiple awards, but the aggregate effect is negative.
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.