This page summarizes the award history for PIID N0001902C3002 with total obligated spending of 41.34 million across 38 actions. The average action value is 1,087,824.36.
Award Number
Award Number 9700 / N0001902C3002 Federal Contract Action Summary (Last 5 Years)
Federal procurement record for award number N0001902C3002 under agency ID 9700, showing obligation activity over the last 5 years.
Figures are based on the last 5 years of available award data and the readable total obligated amount is 41.34 million, or 41,337,325.7 exact.
Overview
The award record for N0001902C3002 shows 38 award actions in the last 5 years, with total obligations of 41,337,325.7. The average action value is 1,087,824.36, indicating repeated obligation activity over the analysis window. This page is focused on the award number and its summarized financial activity.
How to use this page
Use this page to review the award-level obligation trend, action count, and average action value for N0001902C3002. It can support basic procurement review, cross-checking of award activity, and navigation to more detailed FPDS records when needed.
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 = 'N0001902C3002'
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 | 41,340,157.70 | 41.34 million | 37 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -2,832.00 | -2.83 thousand | 1 |
Insight
Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $41.34 million across 37 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and shows a negligible negative obligation of $2.83 thousand, indicating a minor downward adjustment relative to the Navy activity. Overall, the award activity under PIID N0001902C3002 is overwhelmingly Navy-driven, with no material distribution across other agencies in the provided data.
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 = 'N0001902C3002'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 81755 | 41,337,325.70 | 41.34 million | 38 |
Insight
Over the 5-year window, obligations for PIID N0001902C3002 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The award totals $41.34 million across 38 awards, indicating repeated obligated action within the same vendor relationship rather than a distributed vendor base. This pattern suggests a high degree of vendor concentration for the award.
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 = 'N0001902C3002'
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 | 41,337,325.70 | 41.34 million | 38 |
Insight
The award is fully concentrated in NAICS 336411, Aircraft Manufacturing, with all reported obligations in the 5-year window totaling $41.34 million across 38 awards. This indicates a highly focused procurement profile with no visible diversification into other NAICS categories in the provided data. The concentration suggests the requirement is consistently aligned to aircraft manufacturing activities rather than a broad industrial mix.
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 = 'N0001902C3002'
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 |
|---|---|---|---|---|
| AC15 | NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP | 41,337,325.70 | 41.34 million | 38 |
Insight
Over the past 5 years, obligations under PIID N0001902C3002 are concentrated entirely in PSC AC15, which accounts for the full $41.34 million across 38 awards. This indicates a highly focused spend pattern in National Defense R&D services and related R&D facilities/equipment support, with no evidence in the provided data of diversification across other PSCs.
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 = 'N0001902C3002'
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 | 0.00 | 0.00 | 25 |
| 2022 | 41,340,157.70 | 41.34 million | 11 |
| 2023 | 0.00 | 0.00 | 1 |
| 2024 | -2,832.00 | -2.83 thousand | 1 |
Insight
Obligations for PIID N0001902C3002 are highly concentrated in 2022, which accounts for $41.34 million of the observed 5-year window. Activity is otherwise sparse, with 25 awards in 2021, 11 in 2022, and only one award each in 2023 and 2024, despite zero or near-zero obligations in those years. The 2024 total is slightly negative at -$2.83 thousand, indicating a small deobligation rather than new funded activity.
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.