Award Number

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

Federal procurement overview for award N0001918C1046 under agency 9700 during the last full year, showing obligations and action activity.

This page summarizes award N0001918C1046 for agency ID 9700 over the last full year. The award shows total obligations of 57.60 million across 3 actions, with an average action value of 19,199,897.27.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may differ from other FPDS views if filters or rounding differ.

Agency ID
9700
PIID
N0001918C1046
Type
Award
Total Obligated
57.60 million
57,599,691.80
Actions
3
Average Action Value
19,199,897.27

Overview

During the last full year, award N0001918C1046 recorded 3 award actions and 57,599,691.8 in total obligated dollars. The average action value was 19,199,897.27, based on the provided totals. This page is limited to the award and agency identifiers supplied here.

How to use this page

Use this page to review the award-level obligation total and action count for agency 9700. It is a compact reference for comparing this award against other FPDS results under the same analysis window.

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 1 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 57,599,691.80 57.60 million 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID N0001918C1046 are concentrated within the DEPT OF THE NAVY, which accounts for $57.60 million across 2 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears once but with no obligated amount, indicating the observed activity is effectively concentrated in the Navy. This distribution suggests the award’s current financial activity is limited to a single funding source rather than spread across multiple agencies.

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 1 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 57,599,691.80 57.60 million 3

Insight

Within the 1-year window for award N0001918C1046, obligations in this section are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). The vendor received 3 awards totaling $57.60 million, indicating a highly concentrated obligation pattern with no diversification across other vendors in the provided data. This level of concentration suggests the award activity is reliant on one contractor for the period reviewed.

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 1 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 57,599,691.80 57.60 million 3

Insight

Obligations under PIID N0001918C1046 in the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award records 3 obligations totaling $57.60 million, indicating a single-industry procurement profile with no diversification across NAICS codes in the provided data. This concentration suggests the award is tied to aircraft manufacturing work and is not distributed across multiple sectors.

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 1 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 57,599,691.80 57.60 million 3

Insight

For award N0001918C1046 in the past year, obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing. Three awards account for $57.60 million in total obligated value, indicating a narrow product mix with no observed diversification across PSCs in this window. This concentration suggests the award activity is focused on a single fixed-wing aircraft procurement 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 57,599,691.80 57.60 million 3

Insight

Over the 1-year window, obligations for award N0001918C1046 were concentrated in FY2025, with $57.60 million obligated across 3 awards/actions. The limited count indicates a small number of high-value obligations rather than broad distribution. Because only one year is present, no year-over-year trend can be assessed from the provided data.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.