Award Number

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

Federal procurement analysis for award number N0001917C0003 under agency ID 9700, showing obligations and action history over the last 5 years.

This page summarizes award number N0001917C0003 for agency ID 9700 across the last 5 years. The award shows total obligated spending of $58.54 million across 20 actions, with an average action value of $2.93 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are based on the provided total obligated exact value of 58,538,037.52 and the stated 5-year analysis window.

Agency ID
9700
PIID
N0001917C0003
Type
Award
Total Obligated
58.54 million
58,538,037.52
Actions
20
Average Action Value
2,926,901.88

Overview

The award record for N0001917C0003 shows 20 recorded actions within the last 5 years. Total obligated amount is 58,538,037.52, which rounds to $58.54 million. The average action value is $2,926,901.88.

How to use this page

Use this page to review the award’s obligation level and action count in a single view. The figures support basic procurement screening, trend comparison, and follow-up review for award number N0001917C0003 under 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 = 'N0001917C0003'
    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 58,538,037.52 58.54 million 17
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Within the 5-year window, obligations tied to PIID N0001917C0003 are concentrated in the DEPT OF THE NAVY, which accounts for $58.54 million across 17 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 3 awards but no obligated dollars, indicating administrative activity without recorded funding in this set. Overall, obligated value is highly concentrated in a single agency.

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 = 'N0001917C0003'
        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 58,538,037.52 58.54 million 20

Insight

Obligations for PIID N0001917C0003 over the 5-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $58.54 million across 20 awards, indicating repeated award activity and a highly concentrated obligation profile for this award record. No other vendors are reflected in the provided rows, so vendor distribution cannot be assessed beyond this sole supplier.

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 = 'N0001917C0003'
    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 58,538,037.52 58.54 million 20

Insight

Obligations for PIID N0001917C0003 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 5-year window. This single NAICS accounts for $58.54 million across 20 awards, indicating a narrow industrial scope with no observed diversification in the provided rows.

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 = 'N0001917C0003'
    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 58,538,037.52 58.54 million 20

Insight

For PIID N0001917C0003 over the 5-year window, obligations are entirely concentrated in PSC 1510, Aircraft, Fixed Wing. This PSC accounts for $58.54 million across 20 awards, indicating a focused acquisition pattern rather than a diversified mix of product categories. The distribution suggests the award activity is heavily centered on a single aircraft-related requirement.

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 = 'N0001917C0003'
    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 40,687,689.15 40.69 million 4
2022 0.00 0.00 4
2023 17,850,348.37 17.85 million 8
2024 0.00 0.00 2
2025 0.00 0.00 2

Insight

Obligations for PIID N0001917C0003 were concentrated in 2021 and 2023, with $40.69 million and $17.85 million obligated, respectively. The remaining years in the 5-year window show zero obligated dollars despite continuing award activity in 2022, 2024, and 2025, indicating that actions occurred without recorded obligations in those years. Overall, the award exhibits an uneven funding pattern with spend clustered in two years rather than distributed consistently 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.