Award Number

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

Procurement summary for award number N0001925C0070 under agency ID 9700, showing last full year obligation and action activity.

This page summarizes award number N0001925C0070 for agency ID 9700 during the last full year. The award recorded 5 actions and total obligated amount of 2.26 billion.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are based on the provided total obligated exact value of 2,260,474,176 and the reported average action value of 452,094,835.2.

Agency ID
9700
PIID
N0001925C0070
Type
Award
Total Obligated
2.26 billion
2,260,474,176.00
Actions
5
Average Action Value
452,094,835.20

Overview

Award number N0001925C0070 is the relevant identifier for this procurement record under agency ID 9700. In the last full year, the award shows 5 actions and total obligated funding of 2,260,474,176, with an average action value of 452,094,835.2.

How to use this page

Use this page to review the award-level obligation total and the count of recorded actions for the selected analysis window. The figures support basic comparison, filtering, and downstream review of this specific award record.

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 1 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 2,260,474,176.00 2.26 billion 5

Insight

All obligations in the 1-year window are concentrated in a single top agency: the DEPT OF THE NAVY, which accounts for $2.26 billion across 5 awards. This indicates a highly concentrated funding profile with no other agencies appearing in the provided top-agency rows. The distribution suggests the award activity for PIID N0001925C0070 is primarily Navy-driven over the period reviewed.

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 1 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 2,260,474,176.00 2.26 billion 5

Insight

Within the 1-year window for award PIID N0001925C0070 under agency 9700, obligations are fully concentrated with LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for $2.26 billion across 5 awards, indicating a highly concentrated award distribution with no evidence of vendor dispersion in the provided results. This pattern suggests the award activity is dominated by a single contractor relationship during the period.

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 1 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 2,260,474,176.00 2.26 billion 5

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.26 billion obligated across 5 awards in the 1-year window. This indicates a highly focused procurement profile tied to a single industrial category, with no visible diversification across other NAICS codes in the provided data.

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 1 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 2,260,474,176.00 2.26 billion 5

Insight

Obligations for award N0001925C0070 in the 1-year window are fully concentrated in PSC 1510, Aircraft, Fixed Wing. The single PSC accounts for $2.26 billion across 5 awards, indicating a narrow procurement mix rather than a distributed spend profile. This concentration suggests the award activity is tightly focused on fixed-wing aircraft requirements.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,260,474,176.00 2.26 billion 5

Insight

In the 1-year window, obligations for PIID N0001925C0070 are entirely concentrated in FY 2025, with $2.26 billion obligated across 5 awards. This indicates a highly concentrated recent funding profile rather than a distributed multi-year trend. The limited award count suggests the obligation volume is being carried by a small number of actions in the current year.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.