Award Number

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

Analytical procurement page for award number N0001914C0002 under agency ID 9700, summarizing last full year obligations and action activity.

This page summarizes federal procurement activity for award N0001914C0002 within agency ID 9700 over the last full year. The award recorded 2 actions and a total obligated amount of -$358,669.02.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and use the provided exact obligated value of -358669.02, which is shown as -358.67 thousand.

Agency ID
9700
PIID
N0001914C0002
Type
Award
Total Obligated
-358.67 thousand
-358,669.02
Actions
2
Average Action Value
-179,334.51

Overview

Award N0001914C0002 is the relevant procurement record for agency ID 9700 in the last full year. The award shows 2 actions with a combined obligated amount of -$358,669.02, and the average action value was -$179,334.51.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected analysis window. The figures provided here are limited to the supplied award number, agency ID, and last full year summary.

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 = 'N0001914C0002'
    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 -358,669.02 -358.67 thousand 2

Insight

Within the 1-year window for PIID N0001914C0002, obligations are concentrated entirely with DEPT OF THE NAVY (agency ID 1700). This agency accounts for all reported activity in the provided rows, with 2 awards and net obligations of -$358,669.02 (-358.67 thousand). The negative total indicates a net deobligation over the period rather than positive funding growth.

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 = 'N0001914C0002'
        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 -358,669.02 -358.67 thousand 2

Insight

Over the past 1 year for award PIID N0001914C0002 under Agency 9700, obligated activity is fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). This vendor accounts for 2 awards and net obligated value of -$358.67 thousand, indicating a downward adjustment or de-obligation pattern rather than positive spend concentration. No other vendors are present in the provided data, so the distribution is entirely single-source in this window.

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 = 'N0001914C0002'
    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 -358,669.02 -358.67 thousand 2

Insight

Within the 1-year window for award N0001914C0002 under agency 9700, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for the entire reported activity in the section, with 2 awards totaling -$358.67 thousand in obligated value. The negative obligation indicates a net deobligation or downward adjustment rather than positive spending in this 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 = 'N0001914C0002'
    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 -358,669.02 -358.67 thousand 2

Insight

Obligations for PIID N0001914C0002 are concentrated entirely in PSC 1510, Aircraft, Fixed Wing, with two awards totaling -$358.7 thousand over the 1-year window. This indicates a narrow product-service mix and a negative net obligation position in the period reviewed. No other PSC categories are present in the provided rows, so the observed activity is fully concentrated in a single 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 = 'N0001914C0002'
    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 -358,669.02 -358.67 thousand 2

Insight

Within the 1-year window, obligations for award N0001914C0002 are concentrated entirely in FY 2025, with 2 reported awards totaling -$358,669.02. The negative obligation total indicates a downward adjustment rather than net new funding in the period. With activity present in only one fiscal year, no year-to-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.