This page summarizes obligations recorded for award number N0001917C0020 during the last full year. The award shows 2 actions totaling -$4.70 million in obligated dollars, with an average action value of -$2.35 million.
Award Number
Award Number 9700 / N0001917C0020 Federal Contract Action Summary (Last Year)
Federal procurement summary for award number N0001917C0020 under agency ID 9700, based on the last full year of activity.
Totals reflect the exact obligated amount of -4700187.41 and the readable rounded value of -4.70 million.
Overview
In the last full year, award N0001917C0020 recorded 2 award actions tied to agency ID 9700. The award’s total obligated amount was -$4,700,187.41, or about -$4.70 million, with an average action value of -$2,350,093.71.
How to use this page
Use this page to review the award’s recent obligation pattern and the scale of recorded action values. The figures are limited to the provided analysis window and reflect only the award-level totals available here.
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 = 'N0001917C0020'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | -4,700,187.41 | -4.70 million | 2 |
Insight
Within the 1-year window for PIID N0001917C0020, all reported obligations in this top_agencies view are concentrated in the DEPT OF THE NAVY (agency ID 1700). The Navy accounts for a net obligated total of -$4.70 million across 2 awards, indicating the award activity in scope is entirely attributed to a single agency and is negative overall. This concentration suggests no cross-agency distribution is present in the provided data.
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 = 'N0001917C0020'
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 |
|---|---|---|---|---|
| UNITED TECHNOLOGIES CORPORATION | 52661 | -4,700,187.41 | -4.70 million | 2 |
Insight
Obligations for PIID N0001917C0020 in the 1-year window are fully concentrated with a single vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor accounts for all reported activity in the section, with 2 awards totaling -$4.70 million in obligated value. The negative total indicates net deobligation or downward adjustment over the period, and there is no evidence of vendor diversification in the provided data.
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 = 'N0001917C0020'
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 |
|---|---|---|---|---|
| 336412 | AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING | -4,700,187.41 | -4.70 million | 2 |
Insight
Within the 1-year window, obligations on award N0001917C0020 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for two award actions and a net obligated amount of -$4.70 million, indicating a downward adjustment rather than positive funding growth. With only one NAICS present, there is no observable distribution across industries for this award 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 = 'N0001917C0020'
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 |
|---|---|---|---|---|
| 2840 | GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS | -4,700,187.41 | -4.70 million | 2 |
Insight
Obligations under PIID N0001917C0020 in the past year are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. This PSC accounts for a net deobligation of $4.70 million across 2 awards, indicating limited distribution and a downward funding adjustment rather than net positive obligation activity. The concentration in a single PSC suggests the award’s recent financial activity is narrowly focused in aircraft propulsion-related components.
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 = 'N0001917C0020'
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 | -4,700,187.41 | -4.70 million | 2 |
Insight
For the 1-year window, this award has activity only in FY2025, with total obligations of -$4.70 million across 2 awards. The negative obligated amount is concentrated entirely in a single fiscal year, indicating no year-over-year distribution within the reported period. This pattern limits trend analysis but suggests a recent downward adjustment or de-obligation activity tied to this PIID.
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.