This page summarizes the award record for PIID N0001913C9999 across the last 5 years. The award shows 36 actions and total obligated funding of $115.95 million.
Award Number
Award Number 9700 / N0001913C9999 Federal Contract Action Summary (Last 5 Years)
Federal procurement analysis for award number N0001913C9999 under agency 9700, showing obligation and action activity over the last 5 years.
Total obligated is $115,954,362.96, and the average action value is $3,220,954.53.
Overview
The award number N0001913C9999 is associated with agency 9700 and shows $115,954,362.96 in total obligated funding in the last 5 years. Across 36 award actions, the average action value is $3,220,954.53.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for PIID N0001913C9999. The figures provide a compact view of activity on this award within the selected 5-year 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 = 'N0001913C9999'
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 | 121,174,207.26 | 121.17 million | 28 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -5,219,844.30 | -5.22 million | 8 |
Insight
Obligations for PIID N0001913C9999 are concentrated primarily within the DEPT OF THE NAVY, which accounts for $121.17 million across 28 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows a net negative obligated amount of $5.22 million across 8 awards, indicating downward adjustment activity rather than positive funding accumulation. Overall, the distribution is heavily weighted toward the Navy, with DCMA representing a comparatively small offsetting share.
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 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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 70974 | 115,954,362.96 | 115.95 million | 36 |
Insight
NORTHROP GRUMMAN SYSTEMS CORPORATION is the only top vendor identified for this award over the 5-year window, indicating full vendor concentration in the provided data. The entity has 36 awards totaling $115.95 million, suggesting recurring obligation activity to a single recipient 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 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 | 115,954,362.96 | 115.95 million | 36 |
Insight
Obligations for PIID N0001913C9999 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $115.95 million obligated across 36 awards over the 5-year window. This indicates a narrow industry focus and no observed distribution across other NAICS codes in the provided data. The concentration suggests this award record is tied to aircraft manufacturing activity rather than a diversified procurement profile.
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 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 | 115,954,362.96 | 115.95 million | 36 |
Insight
Obligations for PIID N0001913C9999 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $115.95 million obligated across 36 awards in the 5-year window. This indicates a narrow product scope and suggests the award activity is focused on a single aircraft-related requirement rather than a diversified mix of supplies or services.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2021 | 17,615,418.00 | 17.62 million | 6 |
| 2022 | 4,616,342.18 | 4.62 million | 3 |
| 2023 | 34,901,039.52 | 34.90 million | 8 |
| 2024 | 23,359,434.26 | 23.36 million | 9 |
| 2025 | 35,462,129.00 | 35.46 million | 10 |
Insight
Obligations for PIID N0001913C9999 are uneven across the five-year window, with a low point in 2022 at $4.62 million across 3 awards followed by a strong rebound in 2023 to $34.90 million across 8 awards. Funding remained elevated in 2024 and 2025 at $23.36 million and $35.46 million, with award counts increasing from 9 to 10, indicating sustained activity after the 2022 trough. The pattern suggests obligations are concentrated in the later years of the period rather than distributed evenly across the five-year span.
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.