Award Number

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

Federal award record for award number N0001918C1012 under agency ID 9700, showing obligations and action activity for the last full year.

This page summarizes award number N0001918C1012 for agency ID 9700 during the last full year. The award shows total obligated amounts of $96.34 million across 10 award actions.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated exact is $96,338,350.21 and average action value is $9,633,835.02.

Agency ID
9700
PIID
N0001918C1012
Type
Award
Total Obligated
96.34 million
96,338,350.21
Actions
10
Average Action Value
9,633,835.02

Overview

The award record for N0001918C1012 covers the last full year and reflects 10 award actions. Total obligated spending is $96,338,350.21, with an average action value of $9,633,835.02.

How to use this page

Use this page to review award-level obligation totals and action activity for agency ID 9700. The figures support basic analysis of procurement volume and the distribution of obligated value across actions.

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 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 96,338,350.21 96.34 million 10

Insight

For this award over the 1-year window, obligated funding is concentrated entirely with the DEPT OF THE NAVY (agency ID 1700), which accounts for $96.34 million across 10 awards. This indicates a highly concentrated funding pattern with no other agencies represented in the provided results. The distribution suggests the award activity is entirely Navy-directed for this period.

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 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 96,338,350.21 96.34 million 10

Insight

Within the 1-year window for award N0001918C1012 under agency 9700, all reported top-vendor obligation is concentrated with BOEING COMPANY, THE (CAGE 76301). The vendor accounts for $96.34 million across 10 awards, indicating a highly concentrated obligation pattern with no other vendors reflected in the provided rows. This distribution suggests the award’s activity in the period was primarily executed through a single contractor.

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 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 96,338,350.21 96.34 million 10

Insight

Over the past 1 year, obligations for award N0001918C1012 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $96.34 million across 10 awards. This indicates a single-industry spending profile and no observable NAICS diversification within the provided window. The award count suggests repeated obligation activity under the same industrial classification rather than spread across multiple NAICS codes.

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 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
AC14 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES 96,338,350.21 96.34 million 10

Insight

Over the past 1 year, obligations under PIID N0001918C1012 are concentrated in PSC AC14, totaling $96.34 million across 10 awards. This indicates a strong concentration of funding in National Defense R&D Services, specifically R&D administrative expenses. With no other PSCs provided, this row represents the dominant and only observed PSC category for the period.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 96,338,350.21 96.34 million 10

Insight

For PIID N0001918C1012, the 1-year annual trend shows $96.34 million obligated in 2025 across 10 awards. Obligation activity is concentrated in a single year in the provided window, indicating no year-over-year dispersion can be assessed from these rows. The average obligation per award is approximately $9.63 million, suggesting relatively high-value awards within 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.