Award Number

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

Award number N0001920C0047 for Agency ID 9700 shows last full year obligation activity totaling -308.27 thousand across 4 actions.

This award record covers PIID N0001920C0047 for Agency ID 9700 over the last full year. The award shows total obligated amount of -308,265.25 across 4 actions, with an average action value of -77,066.31.

Generated at 03/20/2026

Analysis period: Last full year

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

Agency ID
9700
PIID
N0001920C0047
Type
Award
Total Obligated
-308.27 thousand
-308,265.25
Actions
4
Average Action Value
-77,066.31

Overview

The award record for PIID N0001920C0047 under Agency ID 9700 shows net obligated activity of -308,265.25 in the last full year. Four recorded actions produced an average action value of -77,066.31, indicating negative obligation adjustments over the period.

How to use this page

Use this page to review obligation movement for award number N0001920C0047 within the selected analysis window. The totals and action count provide a concise summary for tracking award-level changes reported under Agency ID 9700.

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 = 'N0001920C0047'
    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 -308,265.25 -308.27 thousand 4

Insight

All reported obligations in the 1-year window are concentrated in DEPT OF THE NAVY (agency 1700), which accounts for the full set of 4 award records tied to PIID N0001920C0047. The cumulative obligated amount is negative $308,265.25, indicating a net deobligation rather than positive funding. This pattern suggests activity is limited to a single agency with no visible distribution across other top 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 = 'N0001920C0047'
        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 -308,265.25 -308.27 thousand 4

Insight

Within the 1-year window, all recorded obligation activity for PIID N0001920C0047 is concentrated in a single vendor: Sikorsky Aircraft Corporation (CAGE 78286). The vendor appears on 4 awards and has a net obligated amount of -$308.27 thousand, indicating cumulative downward adjustment rather than positive funding growth. With no other vendors listed, the award-side distribution is fully concentrated and the observed activity is driven entirely by 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 = 'N0001920C0047'
    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 -308,265.25 -308.27 thousand 4

Insight

Obligations for this award over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. The category records a net deobligation of $308.27 thousand across 4 awards, indicating repeated downward adjustments rather than positive funding growth. This concentration suggests the award’s recent activity in FPDS is limited to a single industrial classification with modest negative obligation movement.

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 = 'N0001920C0047'
    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
1520 AIRCRAFT, ROTARY WING -308,265.25 -308.27 thousand 4

Insight

Obligations for this award in the last 1 year are concentrated in PSC 1520, Aircraft, Rotary Wing, which accounts for the only reported PSC and reflects -$308.27 thousand across 4 awards. The negative obligated amount indicates net de-obligation or downward adjustment rather than positive funding execution in this category. With no other PSCs reported in the window, the distribution is fully concentrated and does not indicate diversification across product or service categories.

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 = 'N0001920C0047'
    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 -308,265.25 -308.27 thousand 4

Insight

For PIID N0001920C0047, the 1-year annual trend shows all recorded obligation activity concentrated in FY2025. FY2025 reflects a net obligated total of -$308,265.25 across 4 awards, indicating a negative net adjustment rather than positive funding growth. With no other years present in the window, there is no multi-year distribution or directional trend beyond this single-year concentration.

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.