Award Number

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

Procurement profile for award number N0001923C0003 at agency ID 9700, showing last full year obligation and action activity.

Award number N0001923C0003 at agency ID 9700 recorded 5 award actions in the last full year. Total obligated value was 14.18 billion, with an average action value of 2,835,335,282.6.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the last full year and use the provided readable and exact obligated totals.

Agency ID
9700
PIID
N0001923C0003
Type
Award
Total Obligated
14.18 billion
14,176,676,413.00
Actions
5
Average Action Value
2,835,335,282.60

Overview

This award record covers PIID N0001923C0003 under agency ID 9700 for the last full year. The award shows 5 actions and total obligated funding of 14,176,676,413, or 14.18 billion when rounded to a readable figure. The average action value was 2,835,335,282.6, indicating a small number of high-value actions within the period.

How to use this page

Use this page to review the award-level obligation total and action count for N0001923C0003 during the last full year. It is most useful for procurement review, budget tracking, and comparing this award's activity against other award records in the same agency scope.

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 = 'N0001923C0003'
    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 14,176,676,413.00 14.18 billion 5

Insight

Over the past 1 year for award PIID N0001923C0003 under agency ID 9700, obligations are fully concentrated in a single top agency row: DEPT OF THE NAVY. This agency accounts for $14.18 billion across 5 awards, indicating very high concentration of obligated dollars within one agency rather than a broad distribution.

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 = 'N0001923C0003'
        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 14,176,676,413.00 14.18 billion 5

Insight

All reported obligations in this 1-year window are concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor received 5 awards totaling $14.18 billion, indicating complete vendor concentration for this award record and a highly concentrated obligation pattern.

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 = 'N0001923C0003'
    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 14,176,676,413.00 14.18 billion 5

Insight

Within the 1-year window for award PIID N0001923C0003 under agency 9700, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $14.18 billion across 5 awards, indicating a highly concentrated funding pattern with no diversification across other NAICS codes in the provided data. The distribution suggests this award activity is dominated by aircraft manufacturing obligations.

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 = 'N0001923C0003'
    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 14,176,676,413.00 14.18 billion 5

Insight

Within the 1-year window for award N0001923C0003 at agency 9700, obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing. This PSC accounts for $14.18 billion across 5 awards, indicating a highly concentrated spend pattern with no diversification across other PSCs in the provided data. The small award count relative to the obligation level suggests large-dollar fixed-wing aircraft procurement activity dominates this award record.

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 = 'N0001923C0003'
    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 14,176,676,413.00 14.18 billion 5

Insight

For the 1-year window, obligations are concentrated in a single reported year, 2025, totaling $14.18 billion across 5 awards. This indicates a highly concentrated distribution of obligations within the period rather than a broad annual spread. The limited award count suggests that the overall obligation volume is driven by a small number of actions in the reported 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.