Award Number

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

Federal procurement analysis for award N0001918C1048 under agency ID 9700 over the last 10 years.

This page summarizes obligation activity for award number N0001918C1048 in agency ID 9700. Over the last 10 years, the award recorded 146 actions and 2.10 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the stated analysis window and use the exact obligated amount of 2097972895.35.

Agency ID
9700
PIID
N0001918C1048
Type
Award
Total Obligated
2.10 billion
2,097,972,895.35
Actions
146
Average Action Value
14,369,677.37

Overview

The award record for N0001918C1048 shows sustained obligation activity across 146 actions in the last 10 years. Total obligated value is 2,097,972,895.35, with an average action value of 14,369,677.37.

How to use this page

Use this page to review the scale and cadence of obligations tied to award N0001918C1048. The figures support basic comparison of action volume, average action value, and total obligated amount within 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 = 'N0001918C1048'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,137,588,130.58 2.14 billion 138
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -39,615,235.23 -39.62 million 8

Insight

Obligations on this award are highly concentrated within the DEPT OF THE NAVY, which accounts for $2.14 billion across 138 actions. The only other agency listed is the DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), with a net negative obligation of $39.62 million across 8 actions, indicating downward adjustments or deobligations rather than new funding. Overall, the award’s obligation profile over the 10-year window is dominated by Navy funding, with limited and offsetting DCMA activity.

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 10 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 2,097,972,895.35 2.10 billion 146

Insight

Obligations for PIID N0001918C1048 are fully concentrated in a single vendor over the 10-year window. LOCKHEED MARTIN CORPORATION (CAGE 81755) received $2.10 billion across 146 awards, indicating sustained and repeated funding to the same contractor. This pattern reflects a highly concentrated vendor distribution with no diversification across other suppliers 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 = 'N0001918C1048'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,097,972,895.35 2.10 billion 146

Insight

Obligations for PIID N0001918C1048 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with 2.10 billion obligated across 146 awards over the 10-year window. This indicates a highly focused procurement profile with no observable diversification across other NAICS codes in the provided data. The award activity is therefore concentrated in a single manufacturing category, suggesting sustained support for aircraft-related requirements.

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 10 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 2,097,972,895.35 2.10 billion 146

Insight

Obligations under this award are highly concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.10 billion obligated across 146 actions over the 10-year window. This indicates the award is primarily focused on fixed-wing aircraft procurement or sustainment rather than a diversified mix of product services. The volume of actions suggests repeated obligation activity within a single dominant PSC category.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 1,033,145,596.27 1.03 billion 16
2019 581,517,115.00 581.52 million 40
2020 310,260,986.72 310.26 million 29
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 under PIID N0001918C1048 were heavily concentrated in 2018, when funding reached $1.03 billion across 16 awards, accounting for the clear peak in the 10-year window. Funding then declined sharply in 2019 and 2020, followed by much lower annual levels from 2021 through 2024, with award counts remaining relatively small and fairly stable. In 2025, obligations were negative (-$39.62 million) across 7 awards, indicating a net deobligation for the 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.