Award Number

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

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

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

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided FPDS analysis window and may differ from round-number displays because exact obligations are included in the source data.

Agency ID
9700
PIID
N0001918C1048
Type
Award
Total Obligated
173.05 million
173,049,197.36
Actions
61
Average Action Value
2,836,872.09

Overview

In the last 5 years, award number N0001918C1048 recorded 61 award actions with total obligated funding of $173,049,197.36. The average action value was $2,836,872.09, which provides a simple view of how obligation activity is distributed across the award history. This page is focused on the award-level record for agency ID 9700.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value in one place. It is suitable for quick procurement analysis, cross-checking FPDS records, and comparing this award against others in the same agency ID.

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 = 'N0001918C1048'
    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 212,664,432.59 212.66 million 58
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -39,615,235.23 -39.62 million 3

Insight

Obligations for PIID N0001918C1048 are highly concentrated within the DEPT OF THE NAVY, which accounts for $212.66 million across 58 awards over the 5-year window. DCMA shows a negative obligated total of $39.62 million across 3 awards, indicating significant downward adjustment activity relative to the Navy’s positive obligations. Overall, the award profile is dominated by Navy funding, with limited and offsetting activity under DCMA.

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 = 'N0001918C1048'
        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 173,049,197.36 173.05 million 61

Insight

LOCKHEED MARTIN CORPORATION accounts for the entire reported vendor obligation in this 5-year window for award N0001918C1048, with $173.05 million across 61 awards. This indicates complete vendor concentration in the displayed results, with no diversification among top vendors captured for the period. The award activity is also relatively frequent, suggesting repeated obligations to the same vendor rather than spread across multiple suppliers.

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 = 'N0001918C1048'
    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 173,049,197.36 173.05 million 61

Insight

Over the 5-year window, obligations for award N0001918C1048 under agency 9700 are entirely concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $173.05 million across 61 awards, indicating a highly focused procurement profile with no observable diversification across other industry codes in the provided data. The repeated award activity suggests sustained procurement within the same manufacturing category rather than a broad distribution of obligations.

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 = 'N0001918C1048'
    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 173,049,197.36 173.05 million 61

Insight

Obligations under PIID N0001918C1048 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $173.05 million across 61 awards over the 5-year window. This indicates a highly focused procurement profile with no observable distribution across other PSCs in the provided data. The award activity suggests repeated obligation within a single product category rather than broad spending diversification.

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 = 'N0001918C1048'
    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 31,399,562.00 31.40 million 15
2022 61,809,942.34 61.81 million 12
2023 103,407,484.00 103.41 million 14
2024 16,047,444.25 16.05 million 13
2025 -39,615,235.23 -39.62 million 7

Insight

Obligations for PIID N0001918C1048 were concentrated in 2022 and 2023, which together accounted for the largest share of activity in the 5-year window, including the peak annual obligation of 103.41 million in 2023. Annual award counts remained relatively stable from 2021 through 2024, ranging from 12 to 15 awards, before declining to 7 in 2025. In 2024 obligations fell sharply to 16.05 million, followed by a negative obligation balance of 39.62 million in 2025, indicating a material downward adjustment or deobligation in the most recent year.

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.