Award Number

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

Federal award page for award number N0001917C0001 under agency 9700, showing last full year obligation and action activity.

This page summarizes award number N0001917C0001 for agency 9700 over the last full year. The award shows total obligated dollars of -$1.11 million across 2 actions, with an average action value of -$556,701.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are based on the provided exact total obligated amount of -1113402 for the last full year.

Agency ID
9700
PIID
N0001917C0001
Type
Award
Total Obligated
-1.11 million
-1,113,402.00
Actions
2
Average Action Value
-556,701.00

Overview

Award number N0001917C0001 is listed under agency 9700 for the last full year analysis window. The award records a total obligated amount of -1113402, which reads as -$1.11 million, across 2 award actions. The average action value is -556701.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for N0001917C0001. The figures support a basic procurement review of activity within the last full year without adding assumptions beyond the recorded data.

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 = 'N0001917C0001'
    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 -1,113,402.00 -1.11 million 2

Insight

Over the 1-year window, obligations associated with PIID N0001917C0001 are concentrated entirely within the DEPT OF THE NAVY. The Navy accounts for 2 awards and a net obligated total of -$1.11 million, indicating all recorded activity for this award is tied to a single agency. The negative obligated amount suggests net deobligation or downward adjustment during 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 = 'N0001917C0001'
        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
LOCKHEED MARTIN CORPORATION 81755 -1,113,402.00 -1.11 million 2

Insight

Within the 1-year window for PIID N0001917C0001, obligations in this section are fully concentrated with LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for 2 awards and a net total obligated amount of -$1.11 million. The negative obligation value indicates downward adjustment(s) or deobligation activity, rather than net new funding, over the period.

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 = 'N0001917C0001'
    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
336411 AIRCRAFT MANUFACTURING -1,113,402.00 -1.11 million 2

Insight

Over the last 1 year, obligations for award N0001917C0001 are concentrated entirely in NAICS 336411, Aircraft Manufacturing. The single NAICS category accounts for 100% of the reported activity in this section, with 2 awards totaling -$1.11 million in obligated value. The negative total indicates a net deobligation or downward adjustment rather than new positive funding within 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 = 'N0001917C0001'
    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
1510 AIRCRAFT, FIXED WING -1,113,402.00 -1.11 million 2

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with -$1.11 million across 2 awards in the 1-year window. This indicates the award activity for PIID N0001917C0001 is narrowly focused on a single product/service category rather than being distributed across multiple PSCs. The negative obligated amount suggests deobligation activity or downward funding adjustments within this PSC.

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 = 'N0001917C0001'
    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 -1,113,402.00 -1.11 million 2

Insight

In the 1-year window for PIID N0001917C0001 at agency 9700, FY2025 records 2 awards with net obligations of -$1.11 million. The entire observed activity is concentrated in a single year, so there is no multi-year distribution or trend to assess within the provided period. The negative obligated total indicates a net de-obligation or downward adjustment across the two awards in FY2025.

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.