Award Number

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

Analysis of award number N0001906C0081 for agency 9700 during the last full year shows 4 award actions and net obligations of -9.23 million.

This page summarizes federal procurement activity for award number N0001906C0081 under agency ID 9700. The last full year shows 4 actions with total obligated amount of -9,227,002.72 and an average action value of -2,306,750.68.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown as reported for the selected analysis window and may reflect deobligations or negative adjustments.

Agency ID
9700
PIID
N0001906C0081
Type
Award
Total Obligated
-9.23 million
-9,227,002.72
Actions
4
Average Action Value
-2,306,750.68

Overview

Award number N0001906C0081 is associated with agency ID 9700 in the selected last-full-year window. The record shows 4 award actions and a net obligated total of -9,227,002.72, with an average action value of -2,306,750.68.

How to use this page

Use this page to review the award-level obligation pattern for the selected period and to compare action count with net dollar movement. The negative total indicates that reported activity in the window reduced obligations rather than increasing them.

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 = 'N0001906C0081'
    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 -9,227,002.72 -9.23 million 4

Insight

Over the past 1 year, obligations associated with PIID N0001906C0081 are concentrated entirely with the DEPT OF THE NAVY (agency ID 1700). This agency accounts for 4 awards and a net total obligated amount of -$9.23 million, indicating all observed activity in this window is attributed to a single top agency. The negative obligation balance suggests downward adjustment activity rather than new positive funding 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 = 'N0001906C0081'
        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
SIKORSKY AIRCRAFT CORPORATION 78286 -9,227,002.72 -9.23 million 4

Insight

Obligations for PIID N0001906C0081 in the 1-year window are fully concentrated with a single vendor, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286), which accounts for 4 awards totaling -$9.23 million. This indicates a highly concentrated obligation pattern with no other vendors represented in the provided rows. The negative total obligated value suggests net deobligations 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 = 'N0001906C0081'
    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 -9,227,002.72 -9.23 million 4

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $9.23 million in negative obligations across 4 actions over the past year. This indicates all reported activity in the window is tied to a single industry code, with no diversification across additional NAICS categories. The negative obligation total suggests downward adjustment activity within this NAICS group during 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 = 'N0001906C0081'
    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
AC15 NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP -9,227,002.72 -9.23 million 4

Insight

Within the 1-year window for award N0001906C0081, PSC AC15 accounts for all reported obligated amount in this section, indicating complete concentration in a single product/service category. The total obligated amount is negative $9.23 million across 4 awards, which suggests net deobligations or downward funding adjustments rather than new positive obligation growth. This pattern is significant because it indicates that recent funding activity is narrowly concentrated and net negative 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 = 'N0001906C0081'
    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 -9,227,002.72 -9.23 million 4

Insight

For the 1-year window, this award shows $-9.23 million in total obligated amount in 2025 across 4 awards/actions, indicating a concentrated obligation pattern within the period. The negative net obligation suggests deobligations exceeded obligations in this window. With all reported activity occurring in a single year, there is no visible multi-year spread in 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.