Award Number

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

Federal award record for award number N0003019C0025 under agency ID 9700, showing obligations and actions over the last 5 years.

This page summarizes the federal procurement activity tied to award number N0003019C0025. Over the last 5 years, the award shows total obligated funding of $3,100,576,688.95 across 103 actions, with an average action value of $30,102,686.30.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the stated 5-year analysis window and the exact obligated total and action count provided for this award.

Agency ID
9700
PIID
N0003019C0025
Type
Award
Total Obligated
3.10 billion
3,100,576,688.95
Actions
103
Average Action Value
30,102,686.30

Overview

This award record identifies procurement activity for PIID N0003019C0025 under agency ID 9700. In the last 5 years, the award accumulated $3,100,576,688.95 in obligations across 103 recorded actions, indicating sustained activity over the analysis window.

How to use this page

Use this page to review obligation totals, action volume, and average action value for the award. The figures support basic trend review and comparison with other awards in the same agency ID or time period.

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 = 'N0003019C0025'
    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,100,576,688.95 3.10 billion 88
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 15

Insight

Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $3.10 billion across 88 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears as a secondary awarding agency by count, with 15 awards, but no obligated dollars recorded. This indicates that obligated value is driven almost entirely by the Navy, while DCMA activity is limited to awards with no reported obligation.

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 = 'N0003019C0025'
        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 04236 3,100,576,688.95 3.10 billion 103

Insight

Over the 5-year window, obligations for PIID N0003019C0025 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 04236). This vendor accounts for 103 awards totaling $3.10 billion, indicating a highly concentrated award distribution with no other vendors represented in the provided rows.

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 = 'N0003019C0025'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 3,100,576,688.95 3.10 billion 103

Insight

Over the past 5 years, obligations for this award are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). The award records 103 actions in this NAICS, totaling $3.10 billion, indicating a single-line-of-effort profile with no diversification across other NAICS codes in the provided data. This concentration suggests the award is consistently associated with technical R&D work within this industry classification.

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 = 'N0003019C0025'
    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
AC22 NATIONAL DEFENSE R&D SERVICES; ATOMIC ENERGY DEFENSE ACTIVITIES; APPLIED RESEARCH 3,100,576,688.95 3.10 billion 103

Insight

Obligations for PIID N0003019C0025 are fully concentrated in PSC AC22, National Defense R&D Services; Atomic Energy Defense Activities; Applied Research, with $3.10 billion obligated across 103 awards over the past 5 years. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award activity suggests sustained spending within a single research and development services category.

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 = 'N0003019C0025'
    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
2021 683,693,242.00 683.69 million 13
2022 970,564,079.96 970.56 million 16
2023 634,886,742.00 634.89 million 31
2024 453,865,844.08 453.87 million 18
2025 357,566,780.91 357.57 million 25

Insight

Obligations on PIID N0003019C0025 peaked in 2022 at $970.56 million, then declined in each subsequent year to $357.57 million in 2025. Award activity was most dispersed in 2023, when 31 awards were recorded despite lower obligations than 2021 and 2022, indicating smaller average award values. Overall, the five-year pattern reflects a high-obligation concentration early in the period followed by reduced annual funding levels and continued award activity.

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.