Award Number

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

Award number N0001917C0010 for agency ID 9700 shows two actions in the last full year with total obligated amounts of -$12.78 million.

This award record summarizes activity for PIID N0001917C0010 during the last full year. The award posted two actions with a combined obligated total of -$12,778,432, or an average action value of -$6,389,216.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided analysis window and reflect exact obligated amounts as reported in the dataset.

Agency ID
9700
PIID
N0001917C0010
Type
Award
Total Obligated
-12.78 million
-12,778,432.00
Actions
2
Average Action Value
-6,389,216.00

Overview

The award number N0001917C0010 is associated with agency ID 9700 and recorded activity in the last full year. The award shows a total obligated amount of -$12,778,432 across two actions, with an average action value of -$6,389,216.

How to use this page

Use this page to review the award-level obligation summary for PIID N0001917C0010 and compare its action count and obligated totals. It is suited for quick reference in FPDS-style analysis and for identifying the scale of reported activity during 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 = 'N0001917C0010'
    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 -12,778,432.00 -12.78 million 2

Insight

Within the 1-year window for PIID N0001917C0010, obligations are concentrated entirely under DEPT OF THE NAVY (agency ID 1700), with no other top-agency entries provided. The reported total obligated is -$12.78 million across 2 awards, indicating all visible activity is associated with a single agency and reflects a net deobligation. This concentration suggests the award’s obligation profile is not distributed across multiple agencies 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 = 'N0001917C0010'
        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 -12,778,432.00 -12.78 million 2

Insight

For PIID N0001917C0010 over the 1-year window, obligated dollars are fully concentrated with a single vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor accounts for all reported activity in the provided rows, with 2 awards and net obligated value of -$12.78 million. The negative obligation total indicates downward adjustment or deobligation activity, so the observed concentration is driven entirely by revisions associated with this vendor.

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 = 'N0001917C0010'
    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 -12,778,432.00 -12.78 million 2

Insight

Over the last 1 year, obligations for PIID N0001917C0010 are concentrated entirely in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for the full reported obligation total, with 2 awards and net obligations of -$12.78 million. The negative total indicates downward net funding activity within this NAICS over the period, with no other NAICS codes represented in the provided data.

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 = 'N0001917C0010'
    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 -12,778,432.00 -12.78 million 2

Insight

Obligations for PIID N0001917C0010 over the 1-year window are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. This PSC accounts for 2 awards totaling -$12.78 million, indicating a small number of actions with a net negative obligated value. The distribution is narrow, with no other PSCs represented in the provided results.

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 = 'N0001917C0010'
    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 -12,778,432.00 -12.78 million 2

Insight

For award PIID N0001917C0010 in agency 9700 over the 1-year window, the reported obligations are concentrated in FY 2025. The single-year total is -$12.78 million across 2 awards, indicating limited distribution and a net deobligation position rather than positive funding growth. With only one year present, no multi-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.