Award Number

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

Federal procurement summary for award number N0001918C1041 under agency ID 9700, showing obligations and action history for the last 5 years.

This page summarizes award number N0001918C1041 for agency ID 9700 over the last 5 years. The award shows 3 actions and total obligations of $461.38 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are based on the provided exact total obligated value of $461,378,864.17 and average action value of $153,792,954.72.

Agency ID
9700
PIID
N0001918C1041
Type
Award
Total Obligated
461.38 million
461,378,864.17
Actions
3
Average Action Value
153,792,954.72

Overview

Award number N0001918C1041 is the focal point of this procurement page for agency ID 9700. In the last 5 years, the award recorded 3 actions with total obligated funding of $461,378,864.17, or $461.38 million rounded for readability. The average value per action is $153,792,954.72.

How to use this page

Use this page to review the award-level obligation history tied to N0001918C1041 and compare its actions over the selected analysis window. The figures shown here are limited to the inputs provided and do not add contract details, performance context, or other attributes not supplied.

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 = 'N0001918C1041'
    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
1700 DEPT OF THE NAVY 461,378,864.17 461.38 million 3

Insight

Over the 5-year window for PIID N0001918C1041, obligations are concentrated entirely within DEPT OF THE NAVY (agency_id 1700), which accounts for the full $461.38 million across 3 awards. This indicates a highly concentrated award profile with no visible distribution across other 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 = 'N0001918C1041'
        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 461,378,864.17 461.38 million 3

Insight

Obligations for PIID N0001918C1041 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755), which accounts for $461.38 million across 3 awards over the 5-year window. This indicates a highly concentrated vendor profile with no diversification among top vendors in the provided data.

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 = 'N0001918C1041'
    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 461,378,864.17 461.38 million 3

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $461.38 million across 3 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across additional NAICS codes in the provided data. The limited award count alongside substantial obligated value suggests this award activity is tied to a narrowly defined aircraft manufacturing requirement.

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 = 'N0001918C1041'
    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 461,378,864.17 461.38 million 3

Insight

Within the 5-year window, obligations for PIID N0001918C1041 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $461.38 million across 3 awards. This indicates a highly focused procurement profile rather than a diversified mix of product service codes. The small award count and single PSC suggest spending activity is centered on one aircraft-related requirement.

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 = 'N0001918C1041'
    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
2025 461,378,864.17 461.38 million 3

Insight

In FY 2025, this award accounted for $461.38 million across 3 awards/actions, indicating a highly concentrated obligation profile in the available 5-year window. The observed activity is limited to a single year in the provided data, so no multi-year trend can be assessed from these rows.

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.