This page summarizes federal award activity for PIID N0001925C0070 under agency ID 9700 across the last 10 years. The award shows total obligated funding of $3,130,421,242 across 6 recorded actions.
Award Number
Award Number 9700 / N0001925C0070 Federal Contract Action Summary (Last 10 Years)
Analysis of award number N0001925C0070 for agency 9700 over the last 10 years, with 6 actions and $3.13 billion obligated.
Dollar figures are shown as reported in the source data; the readable total is $3.13 billion and the exact total is $3,130,421,242.
Overview
The award record for N0001925C0070 shows 6 actions within the 10-year analysis window and a total obligated amount of $3,130,421,242. The average action value is $521,736,873.67, which reflects the scale of the recorded obligations across the action history. This page is focused on the award number and the associated funding totals only.
How to use this page
Use this page to review the award-level obligation pattern for N0001925C0070 before moving into the underlying action detail. It is suitable for quick verification of total obligations, action count, and average action value for agency ID 9700. For deeper analysis, compare the award summary with individual action records in the same time 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 = 'N0001925C0070'
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 | 3,130,421,242.00 | 3.13 billion | 6 |
Insight
Obligations for PIID N0001925C0070 are fully concentrated in a single top-awarding agency: the Department of the Navy. Over the 10-year window, the Navy accounts for $3.13 billion across 6 awards, indicating a narrow agency distribution and a high degree of funding concentration.
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 = 'N0001925C0070'
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 | 3,130,421,242.00 | 3.13 billion | 6 |
Insight
Obligations for PIID N0001925C0070 over the 10-year window are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). This vendor accounts for $3.13 billion across 6 awards, indicating a highly concentrated award distribution with no other vendors represented in the provided data.
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 = 'N0001925C0070'
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 | 3,130,421,242.00 | 3.13 billion | 6 |
Insight
Over the 10-year window, obligations for award PIID N0001925C0070 are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single reported NAICS accounts for $3.13 billion across 6 awards, indicating a narrow industrial focus with no visible diversification in the provided rows. This concentration suggests the award activity is tied primarily to aircraft manufacturing rather than a broader set of manufacturing or support sectors.
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 = 'N0001925C0070'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 3,130,421,242.00 | 3.13 billion | 6 |
Insight
Obligations under PIID N0001925C0070 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $3.13 billion obligated across 6 awards in the 10-year window. This indicates a narrow procurement profile and strong alignment to a single product category rather than a diversified mix of supplies or services. The award activity is limited in count but highly concentrated in value, suggesting a small number of large transactions drive overall spend.
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 = 'N0001925C0070'
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 |
|---|---|---|---|
| 2024 | 869,947,066.00 | 869.95 million | 1 |
| 2025 | 2,260,474,176.00 | 2.26 billion | 5 |
Insight
Obligations on this award are concentrated in the most recent years in the 10-year window, increasing from 869.95 million across 1 award in 2024 to 2.26 billion across 5 awards in 2025. This indicates a sharp upward shift in funding volume and award activity year over year. The distribution suggests 2025 is the dominant obligation year within the provided 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.