Award Number

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

Award number N0001918C1046 for agency 9700 shows obligation activity over the last 10 years, with 124 actions totaling $5.50 billion.

This page summarizes procurement activity for award number N0001918C1046 under agency ID 9700 across the last 10 years. The award records 124 actions and total obligations of $5,496,533,530.53, with an average action value of $44,326,883.31.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts reflect readable and exact obligation totals for the selected analysis window and may differ due to rounding.

Agency ID
9700
PIID
N0001918C1046
Type
Award
Total Obligated
5.50 billion
5,496,533,530.53
Actions
124
Average Action Value
44,326,883.31

Overview

The award record for N0001918C1046 shows sustained procurement activity across the last 10 years. With 124 award actions and total obligations of $5,496,533,530.53, the record reflects a high-dollar procurement history under agency ID 9700.

How to use this page

Use this page to review obligation totals, action count, and average action value for award N0001918C1046. It is suitable for FPDS-style analysis of award-level activity over a defined 10-year period.

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 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 5,496,533,530.53 5.50 billion 56
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 68

Insight

Obligations for PIID N0001918C1046 are highly concentrated in the DEPT OF THE NAVY, which accounts for $5.50 billion across 56 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears more frequently by award count, with 68 awards, but shows no obligated value in this 10-year window. This pattern indicates that obligated spending is concentrated within the Navy, while DCMA activity is present primarily as non-obligated award records.

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 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 5,496,533,530.53 5.50 billion 124

Insight

BOEING COMPANY, THE is the sole top vendor for this award over the 10-year window, accounting for $5.50 billion across 124 awards. This indicates highly concentrated vendor activity, with all reported obligations in this section attributed to a single contractor. The distribution suggests sustained reliance on one vendor rather than a diversified supplier base.

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 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 5,496,533,530.53 5.50 billion 124

Insight

Obligations for PIID N0001918C1046 are fully concentrated in NAICS 336411, Aircraft Manufacturing, totaling $5.50 billion across 124 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across NAICS codes in the provided data. The volume of awards suggests repeated obligation activity within the same industry classification rather than broad category spread.

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 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 5,496,533,530.53 5.50 billion 124

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $5.50 billion across 124 awards. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided results. The distribution suggests the award is primarily associated with fixed-wing aircraft acquisition or related support over the 10-year window.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 76,317,000.00 76.32 million 3
2019 2,833,887,692.00 2.83 billion 9
2020 1,180,713,485.85 1.18 billion 20
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 are highly concentrated in 2019, when annual obligations peaked at $2.83 billion across 9 awards. The profile then declined to $1.18 billion in 2020, turned negative in 2021 due to a -$20.75 million net adjustment, and remained comparatively modest in 2022–2023 before rising again to $1.14 billion in 2024. Award counts are more dispersed than obligations, with the highest activity in 2022–2023 at 30 awards each, indicating that obligation volume and award volume do not move in tandem across the period.

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.