Award Number

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

Award number N0001913C9999 under agency 9700 recorded 10 actions in the last full year with $35.46 million obligated.

This award page summarizes obligation activity for PIID N0001913C9999 within agency 9700 over the last full year. The record shows 10 award actions and total obligated funding of $35,462,129.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year analysis window; average action value is $3,546,212.9.

Agency ID
9700
PIID
N0001913C9999
Type
Award
Total Obligated
35.46 million
35,462,129.00
Actions
10
Average Action Value
3,546,212.90

Overview

Award number N0001913C9999 is associated with agency 9700 and shows recorded obligation activity in the last full year. Across 10 actions, total obligated funding reached $35,462,129, with an average action value of $3,546,212.9. This page is intended to support a quick review of award-level spending activity.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value for the selected analysis window. It can help with award tracking, basic trend review, and comparison against other awards in the same agency context.

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 = 'N0001913C9999'
    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 35,519,606.00 35.52 million 9
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -57,477.00 -57.48 thousand 1

Insight

Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $35.52 million across 9 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) has a single award with a net negative obligation of $57.48 thousand, indicating minimal activity relative to the Navy total. Overall, this award appears almost entirely driven by Navy obligations, with DCMA contributing only a marginal offset.

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 = 'N0001913C9999'
        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
NORTHROP GRUMMAN SYSTEMS CORPORATION 70974 35,462,129.00 35.46 million 10

Insight

Over the 1-year window, obligations under PIID N0001913C9999 are fully concentrated with a single vendor, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 70974). This vendor accounts for $35.46 million across 10 awards, indicating a sustained and highly concentrated obligation pattern rather than a distributed vendor 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 = 'N0001913C9999'
    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 35,462,129.00 35.46 million 10

Insight

Obligations for PIID N0001913C9999 over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for all reported obligations in the provided rows, totaling $35.46 million across 10 awards. The distribution indicates a single-industry concentration with no diversification reflected in this section.

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 = 'N0001913C9999'
    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 35,462,129.00 35.46 million 10

Insight

Over the past 1 year, obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $35.46 million across 10 awards. This indicates a narrow procurement profile centered on a single product category rather than a diversified mix of PSCs. The average obligation per award is about $3.55 million, suggesting repeated funding within the same equipment line.

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 = 'N0001913C9999'
    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 35,462,129.00 35.46 million 10

Insight

For FY 2025, the award was obligated at 35.46 million across 10 awards, indicating a moderate concentration of obligations within the one-year window. This pattern suggests continued funding activity on the PIID with repeated award actions rather than a single one-time obligation. With only one year of data provided, no year-over-year trend can be assessed.

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.