This page summarizes the federal award record for PIID N0001902C3002 during the last 10 years. The award shows 150 actions and total obligated amount of 1.74 billion dollars.
Award Number
Award Number 9700 / N0001902C3002 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number N0001902C3002 under Agency ID 9700, covering obligated activity over the last 10 years.
Figures reflect the provided analysis window and may differ from other reporting views because obligation totals and action counts are based on the source query.
Overview
The award number N0001902C3002 is associated with Agency ID 9700 and shows 150 award actions within the last 10 years. Total obligated amount is 1,743,543,125.1 dollars, with an average action value of 11,623,620.83 dollars.
How to use this page
Use this page to review the award-level obligation pattern, action volume, and average action value for N0001902C3002. It is useful for quick FPDS reference, historical tracking, and comparing this award against other records 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 = 'N0001902C3002'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 1,743,545,957.10 | 1.74 billion | 145 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -2,832.00 | -2.83 thousand | 5 |
Insight
Obligations for this award are overwhelmingly concentrated with the Department of the Navy, which accounts for $1.74 billion across 145 awards. The only other agency activity reflected is DCMA, with 5 awards and a negligible net obligation of -$2.83 thousand, indicating no material diversification across agencies. Overall, the award’s funding profile is effectively centered on a single agency over the 10-year window.
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 10 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 | 1,048,958,302.70 | 1.05 billion | 126 |
| LOCKHEED MARTIN CORPORATION | 694,584,822.40 | 694.58 million | 24 |
Insight
Award obligations are concentrated in LOCKHEED MARTIN CORPORATION, which appears in both row groupings and accounts for the full set of listed top-vendor obligations across the 10-year window. The CAGE-coded entry (81755) represents 1.05 billion across 126 awards, while the uncoded entry shows 694.58 million across 24 awards, indicating substantial award volume and value concentrated with the same vendor. This distribution suggests sustained reliance on a single contractor rather than broad vendor dispersion.
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 10 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 | 1,743,543,125.10 | 1.74 billion | 150 |
Insight
Within the 10-year window, this award is entirely concentrated in NAICS 336411, Aircraft Manufacturing. The reported obligations total $1.74 billion across 150 actions, indicating sustained funding activity within a single industrial classification rather than a diversified NAICS mix. This concentration suggests the award is narrowly aligned to aircraft manufacturing requirements over the period reviewed.
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 10 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 | R&D- DEFENSE SYSTEM: AIRCRAFT (OPERATIONAL SYSTEMS DEVELOPMENT) | 1,702,205,799.40 | 1.70 billion | 106 |
| AC15 | NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP | 41,337,325.70 | 41.34 million | 44 |
Insight
Obligations for PIID N0001902C3002 over the 10-year window are highly concentrated in PSC AC15, with $1.70 billion across 106 awards tied to R&D for defense aircraft operational systems development. A smaller share, $41.34 million across 44 awards, is also coded to AC15 under a national defense R&D services classification. This pattern indicates the award’s obligation profile is dominated by aircraft-related R&D activity, with a comparatively limited secondary distribution within the same PSC family.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 895,505,692.40 | 895.51 million | 31 |
| 2017 | 786,336,507.00 | 786.34 million | 34 |
| 2018 | 20,363,600.00 | 20.36 million | 16 |
| 2019 | 0.00 | 0.00 | 6 |
| 2020 | 0.00 | 0.00 | 25 |
| 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 heavily concentrated in 2016 and 2017, when annual obligations totaled $895.51 million and $786.34 million across 31 and 34 awards, respectively. After 2017, obligated dollars dropped sharply, with only $20.36 million in 2018 and $41.34 million in 2022, while several intervening years recorded zero obligations despite continued award activity. The 2024 amount is effectively flat at -$2.83 thousand, indicating a minor deobligation rather than new funding.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.