This award record covers PIID 0012 for agency 9700 during the last full year. It shows 56 award actions with total obligated dollars of 13.19 million.
Award Number
Award Number 9700 / 0012 Federal Contract Action Summary (Last Year)
FPDS award page for award number 0012 under agency 9700, showing last full year obligation and action activity.
Obligation values are shown as reported, with exact total obligated amount of 13192076.29 and an average action value of 235572.79.
Overview
This page summarizes award number 0012 for agency 9700 over the last full year. The record includes 56 actions and total obligated amount of 13192076.29, with an average action value of 235572.79.
How to use this page
Use this page to review basic award activity for PIID 0012 and compare obligation levels across the analysis window. The action count and obligation totals provide a compact view of the award's reported spending pattern.
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 = '0012'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 16,084,060.11 | 16.08 million | 21 |
| 1700 | DEPT OF THE NAVY | 875,453.00 | 875.45 thousand | 6 |
| 97AK | DEFENSE INFORMATION SYSTEMS AGENCY (DISA) | 2,119.08 | 2.12 thousand | 3 |
| 97ZS | U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) | -2.00 | -2.00 | 1 |
| 9761 | DEFENSE THREAT REDUCTION AGENCY (DTRA) | -20,656.75 | -20.66 thousand | 2 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -342,232.27 | -342.23 thousand | 6 |
| 2100 | DEPT OF THE ARMY | -3,406,664.88 | -3.41 million | 17 |
Insight
Award activity under PIID 0012 over the last year is concentrated in the DEPT OF THE AIR FORCE, which accounts for 21 awards and $16.08 million in obligations, far exceeding all other agencies listed. The DEPT OF THE NAVY is a distant second with 6 awards and $875.45 thousand obligated, while DISA contributed a small positive amount across 3 awards. Several agencies show net negative obligated amounts, including the DEPT OF THE ARMY (-$3.41 million) and DCMA (-$342.23 thousand), indicating downward adjustments or deobligations 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 = '0012'
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 |
|---|---|---|---|---|
| MASSACHUSETTS INSTITUTE OF TECHNOLOGY | 3G050 | 16,378,913.71 | 16.38 million | 17 |
| WATTS CONSTRUCTORS, LLC | 4E1J4 | 810,446.82 | 810.45 thousand | 2 |
| LOCKHEED MARTIN CORPORATION | 16331 | 490,571.00 | 490.57 thousand | 2 |
| ORION CONSTRUCTION CORPORATION | 1RVK3 | 240,296.00 | 240.30 thousand | 2 |
| M & E PACIFIC INC | 0CJH0 | 50,921.00 | 50.92 thousand | 1 |
| LEIDOS, INC. | 7LQ18 | 26,305.87 | 26.31 thousand | 2 |
| ULTISAT, INC. | 3H9E0 | 5,187.25 | 5.19 thousand | 1 |
| QINETIQ INC. | 1TAV2 | 0.00 | 0.00 | 1 |
| LOCKHEED MARTIN CORPORATION | 64059 | 0.00 | 0.00 | 1 |
| LOCKHEED MARTIN CORPORATION | 03640 | 0.00 | 0.00 | 1 |
Insight
Obligations under PIID 0012 in the past year are highly concentrated in MASSACHUSETTS INSTITUTE OF TECHNOLOGY, which received 16.38 million across 17 awards and far exceeds every other vendor in the list. The remaining obligated amounts are much smaller and distributed across a limited set of vendors, with WATTS CONSTRUCTORS, LLC next at 810.45 thousand and all others below 500.6 thousand. Three additional awards to LOCKHEED MARTIN CORPORATION appear with separate CAGE codes, but each carries zero obligated dollars, indicating activity without recorded obligation in this window.
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 = '0012'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 15,680,760.01 | 15.68 million | 28 |
| 237990 | OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION | 810,446.82 | 810.45 thousand | 2 |
| 333319 | OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING | 490,571.00 | 490.57 thousand | 2 |
| 237110 | WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION | 240,296.00 | 240.30 thousand | 2 |
| 541370 | SURVEYING AND MAPPING (EXCEPT GEOPHYSICAL) SERVICES | 50,921.00 | 50.92 thousand | 1 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 20,864.29 | 20.86 thousand | 3 |
| 517919 | ALL OTHER TELECOMMUNICATIONS | 5,187.25 | 5.19 thousand | 1 |
| 336411 | AIRCRAFT MANUFACTURING | 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 |
Insight
Obligations under PIID 0012 are highly concentrated in NAICS 541712, which accounts for $15.68 million across 28 awards and dominates the 1-year award profile. The remaining obligated dollars are distributed across a much smaller set of NAICS codes, led by construction and manufacturing categories: 237990 ($810.45 thousand, 2 awards), 333319 ($490.57 thousand, 2 awards), and 237110 ($240.30 thousand, 2 awards). Several additional NAICS codes appear only once or twice and carry relatively small or zero obligations, indicating a broad but low-value tail outside the primary R&D category.
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 = '0012'
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 |
|---|---|---|---|---|
| AC61 | R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) | 16,378,913.71 | 16.38 million | 17 |
| Y1EC | CONSTRUCTION OF PRODUCTION BUILDINGS | 810,446.82 | 810.45 thousand | 2 |
| 6910 | TRAINING AIDS | 490,571.00 | 490.57 thousand | 2 |
| Y1PD | CONSTRUCTION OF WASTE TREATMENT AND STORAGE FACILITIES | 240,296.00 | 240.30 thousand | 2 |
| R408 | SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT | 5,649.12 | 5.65 thousand | 4 |
| D316 | IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT | 5,187.25 | 5.19 thousand | 1 |
| AD25 | R&D- DEFENSE OTHER: SERVICES (OPERATIONAL SYSTEMS DEVELOPMENT) | 0.00 | 0.00 | 1 |
| AD94 | R&D- DEFENSE OTHER: OTHER (ENGINEERING DEVELOPMENT) | 0.00 | 0.00 | 1 |
| 1560 | AIRFRAME STRUCTURAL COMPONENTS | 0.00 | 0.00 | 1 |
| 1410 | GUIDED MISSILES | 0.00 | 0.00 | 1 |
Insight
Obligations under award PIID 0012 are heavily concentrated in PSC AC61, which accounts for 16.38 million across 17 awards and dominates the portfolio over the 1-year window. The remaining obligations are much smaller and spread across construction and training-related PSCs, with Y1EC at 810.45 thousand, 6910 at 490.57 thousand, and Y1PD at 240.30 thousand, each appearing on only two awards. Several additional PSCs have minimal obligated amounts or zero obligation values, indicating limited activity outside the primary R&D 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 = '0012'
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 | 13,192,076.29 | 13.19 million | 56 |
Insight
In FY 2025, this award recorded $13.19 million in obligated amount across 56 actions, indicating a moderate concentration of spending within the one-year window. The obligational activity is fully concentrated in the single reported year, so no year-over-year 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.