Award Number

Award Number 9700 / N0001915C0003 Federal Contract Action Summary (Last 5 Years)

Award number N0001915C0003 for agency 9700 shows 30 actions over the last 5 years with total obligated funding of -$73.28 million.

This page summarizes federal procurement activity for award number N0001915C0003 within agency ID 9700 over the last 5 years. The award records -$73,283,355.93 in total obligated value across 30 actions, with an average action value of -$2,442,778.53.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and obligated totals for this award number; negative values are presented exactly as supplied.

Agency ID
9700
PIID
N0001915C0003
Type
Award
Total Obligated
-73.28 million
-73,283,355.93
Actions
30
Average Action Value
-2,442,778.53

Overview

The award number N0001915C0003 is associated with agency ID 9700 in the provided dataset. Over the last 5 years, the award shows 30 recorded actions and total obligated funding of -$73,283,355.93, which averages to -$2,442,778.53 per action. This page is intended to support review of the award-level procurement record as reported.

How to use this page

Use this page to review the award's recent obligation pattern, action count, and average action value in one place. It can help compare this award against other award numbers within agency 9700 using the same analysis window.

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 = 'N0001915C0003'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3
1700 DEPT OF THE NAVY -73,283,355.93 -73.28 million 27

Insight

Award activity for PIID N0001915C0003 over the last 5 years is concentrated within the Department of the Navy, which accounts for 27 awards and -$73.28 million in total obligated value. The Defense Contract Management Agency appears in 3 awards but with no obligated value, indicating administrative or oversight-related activity rather than funding concentration. Overall, the obligation profile is dominated by Navy action, with DCMA representing a minimal, zero-dollar share.

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 = 'N0001915C0003'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 -73,283,355.93 -73.28 million 30

Insight

Within the 5-year window for award N0001915C0003, all reported obligated dollars in the top-vendor view are concentrated with LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor account shows 30 awards and net obligations of -$73.28 million, indicating a substantial downward adjustment or deobligation impact over the period. No other vendors are present in the provided rows, so the vendor distribution is fully concentrated in a single contractor.

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 = 'N0001915C0003'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 -73,283,355.93 -73.28 million 30

Insight

Over the past 5 years, obligations on award N0001915C0003 for agency 9700 are entirely concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for 30 awards and a net obligation total of -$73.28 million, indicating a substantial negative funding adjustment or deobligation within the same industrial classification. The data provided show no diversification across other NAICS codes 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 = 'N0001915C0003'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 -73,283,355.93 -73.28 million 30

Insight

Obligations under PIID N0001915C0003 over the 5-year window are fully concentrated in PSC 1510, Aircraft, Fixed Wing. This category accounts for a net -$73.28 million across 30 awards, indicating all recorded activity in the provided data is tied to a single product service code. The negative obligated total suggests net deobligations or downward funding adjustments over the period rather than positive net spend.

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 = 'N0001915C0003'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 -23,467,193.00 -23.47 million 16
2022 -50,041,363.00 -50.04 million 10
2023 225,200.07 225.20 thousand 3
2025 0.00 0.00 1

Insight

Obligated amounts for PIID N0001915C0003 are heavily concentrated in 2021 and 2022, with negative totals of $23.47 million and $50.04 million across 16 and 10 awards, respectively. Activity then drops sharply in 2023 to a single positive obligation of $225.2 thousand across 3 awards, indicating a marked change in both scale and direction of funding. In 2025, one award is recorded with no obligated amount, suggesting limited recent activity in the five-year window.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.