Award Number

Award Number 9700 / N0001925C0070 Federal Contract Action Summary (Last 5 Years)

Federal procurement summary for award number N0001925C0070 under agency ID 9700, showing obligations over the last 5 years.

This page presents the award-level spending profile for PIID N0001925C0070 during the last 5 years. The record shows 6 award actions and total obligations of 3.13 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated reflects 3,130,421,242 across 6 actions, with an average action value of 521,736,873.67.

Agency ID
9700
PIID
N0001925C0070
Type
Award
Total Obligated
3.13 billion
3,130,421,242.00
Actions
6
Average Action Value
521,736,873.67

Overview

The award record for PIID N0001925C0070 covers a 5-year analysis window and includes 6 reported actions. Total obligated dollars are 3,130,421,242, which yields an average action value of 521,736,873.67.

How to use this page

Use this page to review the obligation level associated with this award number and to compare its action activity over the selected window. The figures are limited to the supplied award, agency ID 9700, and the last 5 years.

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 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 3,130,421,242.00 3.13 billion 6

Insight

Within the 5-year window for award PIID N0001925C0070, all reported obligation activity in this section is concentrated in a single agency, the DEPT OF THE NAVY. The Navy accounts for $3.13 billion across 6 awards, indicating a fully concentrated funding pattern with no distribution across other agencies in the provided data. This level of concentration suggests the award is primarily associated with one customer and limited cross-agency spread.

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 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 3,130,421,242.00 3.13 billion 6

Insight

Over the 5-year window, obligations for PIID N0001925C0070 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for $3.13 billion across 6 awards, indicating a highly concentrated award distribution with no additional vendor activity reflected in the provided rows. This pattern suggests the requirement has been consistently placed with one prime contractor rather than dispersed across multiple vendors.

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 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 3,130,421,242.00 3.13 billion 6

Insight

Obligations under PIID N0001925C0070 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.13 billion across 6 awards over the 5-year window. This indicates a narrow industrial distribution and confirms the award is aligned entirely to aircraft manufacturing activity. The concentration suggests limited NAICS diversification for this contract record.

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 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 3,130,421,242.00 3.13 billion 6

Insight

Obligations for PIID N0001925C0070 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $3.13 billion obligated across 6 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The distribution suggests the award activity is dominated by a single aircraft-related requirement rather than a broad mix of supply categories.

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 5 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 for PIID N0001925C0070 are highly concentrated in 2025, with 2.26 billion across 5 awards, compared with 869.95 million across 1 award in 2024. The year-over-year increase reflects both higher total obligated dollars and a broader distribution across multiple awards in the later year. This pattern indicates a material expansion in funding activity within the 5-year window provided.

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.