Award Number

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

FPDS award page for award number N0001918C1012 under agency ID 9700, summarizing obligations and action history over the last 10 years.

This page presents federal award data for PIID N0001918C1012 within agency ID 9700. Over the last 10 years, the award shows 91 actions and total obligated amount of 1.81 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are based on the provided analysis window and total obligated exact value of 1805224987.79, with average action value of 19837637.23.

Agency ID
9700
PIID
N0001918C1012
Type
Award
Total Obligated
1.81 billion
1,805,224,987.79
Actions
91
Average Action Value
19,837,637.23

Overview

The award record for PIID N0001918C1012 under agency ID 9700 shows a total obligated amount of 1,805,224,987.79 across 91 actions in the last 10 years. The average action value is 19,837,637.23, indicating a multi-action obligation profile over the analysis window.

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 supports quick comparison of this award against other FPDS records for the same agency ID or similar procurement activity.

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 = 'N0001918C1012'
    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 1,805,224,987.79 1.81 billion 87
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for 1.81 billion across 87 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 4 awards but shows no obligated value, indicating administrative or non-obligating activity rather than funding concentration. Overall, the award history is dominated by Navy-funded obligations with limited participation from other agencies in this record.

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 = 'N0001918C1012'
        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
BOEING COMPANY, THE 76301 1,805,224,987.79 1.81 billion 91

Insight

For PIID N0001918C1012 over the 10-year window, obligated dollars are fully concentrated with a single vendor: BOEING COMPANY, THE (CAGE 76301). Boeing received 91 awards totaling $1.81 billion, indicating a highly concentrated vendor profile with no diversification among other vendors in the provided data. This concentration suggests the award has been consistently executed through one primary contractor rather than distributed 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 = 'N0001918C1012'
    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 1,805,224,987.79 1.81 billion 91

Insight

Obligations for PIID N0001918C1012 under agency 9700 are fully concentrated in NAICS 336411, Aircraft Manufacturing. Over the 10-year window, this category accounts for $1.81 billion across 91 awards, indicating a sustained and highly focused procurement profile. No other NAICS codes are present in the provided data, so there is no observable diversification across industries in this award record.

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 = 'N0001918C1012'
    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
AC14 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES 920,538,047.01 920.54 million 62
AC14 R&D- DEFENSE SYSTEM: AIRCRAFT (ENGINEERING DEVELOPMENT) 884,686,940.78 884.69 million 29

Insight

Obligations under this award are heavily concentrated in PSC AC14 across two distinct descriptions, each accounting for substantial spend over the 10-year window. The largest line is National Defense R&D Services, Department of Defense - Military; R&D Administrative Expenses, with $920.54 million across 62 actions, followed by R&D- Defense System: Aircraft (Engineering Development), with $884.69 million across 29 actions. Together, these two categories indicate sustained R&D-related obligations, with spending distributed across a moderate number of actions rather than a single isolated transaction.

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 = 'N0001918C1012'
    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 439,943,937.00 439.94 million 3
2019 371,374,916.00 371.37 million 13
2020 103,692,707.07 103.69 million 15
2021 71,312,000.00 71.31 million 15
2022 56,349,302.05 56.35 million 9
2023 101,649,552.40 101.65 million 12
2024 564,564,223.06 564.56 million 14
2025 96,338,350.21 96.34 million 10

Insight

Obligations under PIID N0001918C1012 are concentrated in two years: 2018 at $439.94 million and 2024 at $564.56 million, together accounting for the largest share of the 10-year window. From 2019 through 2023, annual obligations were materially lower and generally ranged from $56.35 million to $371.37 million, with award counts mostly between 9 and 15. The pattern indicates intermittent high-value obligation spikes rather than a steady year-over-year funding profile.

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.