Award Number

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

FPDS query page for award number N0001918C1046 under agency ID 9700, showing recent award activity and obligations over the last 5 years.

This award record summarizes 92 actions within the last 5 years, with total obligated amounts of 1.41 billion dollars. The average action value is 15,278,427.75, based on an exact total obligation of 1,405,615,352.68.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts and counts reflect the provided analysis window and may not include activity outside the last 5 years.

Agency ID
9700
PIID
N0001918C1046
Type
Award
Total Obligated
1.41 billion
1,405,615,352.68
Actions
92
Average Action Value
15,278,427.75

Overview

The award number N0001918C1046 is associated with agency ID 9700 and shows active obligation history during the last 5 years. The record includes 92 award actions, with total obligated amounts of 1,405,615,352.68 and an average action value of 15,278,427.75.

How to use this page

Use this page to review obligation volume and action frequency for the award over the selected analysis window. The figures support basic FPDS review, comparison, and trend screening without extending beyond the provided data.

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 = 'N0001918C1046'
    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 1,405,615,352.68 1.41 billion 33
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 59

Insight

Obligations are concentrated in the DEPT OF THE NAVY, which accounts for $1.41 billion across 33 awards in the 5-year window. The DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 59 awards but no obligated value, indicating administrative or oversight activity rather than funded obligations. Overall, funding is highly concentrated in a single agency despite a larger award count 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 = 'N0001918C1046'
        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
BOEING COMPANY, THE 76301 1,405,615,352.68 1.41 billion 92

Insight

Obligations under PIID N0001918C1046 in the 5-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $1.41 billion across 92 awards, indicating a high degree of award and obligation concentration with no visible distribution across other 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 = 'N0001918C1046'
    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 1,405,615,352.68 1.41 billion 92

Insight

Over the 5-year window, obligations for award N0001918C1046 under agency 9700 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $1.41 billion across 92 awards, indicating a highly focused procurement profile with activity concentrated in a single industrial category. No diversification across other NAICS codes is evident in the provided data.

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 = 'N0001918C1046'
    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 1,405,615,352.68 1.41 billion 92

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.41 billion across 92 awards over the 5-year window. This indicates the award activity is narrowly focused on fixed-wing aircraft rather than being distributed across multiple product service codes. The volume of awards relative to obligated dollars suggests repeated procurement activity within the same 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 = 'N0001918C1046'
    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 -20,752,646.24 -20.75 million 15
2022 22,896,382.72 22.90 million 30
2023 209,453,520.63 209.45 million 30
2024 1,136,418,403.77 1.14 billion 14
2025 57,599,691.80 57.60 million 3

Insight

Obligations under PIID N0001918C1046 were highly uneven across the 5-year window, with a sharp spike in 2024 at $1.14 billion, far exceeding all other years. Award activity was more distributed in 2021–2023, with 15 to 30 awards annually and obligations ranging from a net deobligation of $20.75 million in 2021 to $209.45 million in 2023. In 2025, obligations fell to $57.60 million across 3 awards, indicating a pronounced drop after the 2024 peak.

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.