Award Number

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

Award number N0003024C0100 for Agency ID 9700 reflects 48 recorded actions over the last 5 years and 1.91 billion in total obligated value.

This page summarizes federal procurement activity for award number N0003024C0100 associated with Agency ID 9700. Across the last 5 years, the award shows 48 actions and 1,913,367,053 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation figures are shown as provided, with a readable total of 1.91 billion and an exact total of 1,913,367,053.

Agency ID
9700
PIID
N0003024C0100
Type
Award
Total Obligated
1.91 billion
1,913,367,053.00
Actions
48
Average Action Value
39,861,813.60

Overview

The award record for N0003024C0100 shows 48 actions during the last 5 years, with total obligated value of 1,913,367,053. The average action value is 39,861,813.6, which provides a simple measure of the scale of activity reflected in the record.

How to use this page

Use this page to review the award’s procurement profile by action count, total obligated value, and average action value. It is intended as a compact summary for identifying the size and pace of recorded activity tied to this award number.

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 = 'N0003024C0100'
    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 1,913,367,053.00 1.91 billion 46
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2

Insight

Obligations for PIID N0003024C0100 are highly concentrated in the DEPT OF THE NAVY, which accounts for $1.91 billion across 46 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 2 awards but no obligated value, indicating minimal fiscal distribution outside the Navy. Overall, the award profile is heavily centralized with little observable obligation spread across other agencies in the provided data.

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 = 'N0003024C0100'
        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 7X6A9 1,913,367,053.00 1.91 billion 48

Insight

Over the 5-year window, obligations for award PIID N0003024C0100 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 7X6A9). This vendor accounts for 1.91 billion across 48 awards, indicating a high degree of award and funding concentration 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 = 'N0003024C0100'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,913,367,053.00 1.91 billion 48

Insight

Over the 5-year window, obligations for this award are entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, totaling $1.91 billion across 48 actions. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The distribution suggests the award is tied to a single dominant manufacturing category rather than a broad contract mix.

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 = 'N0003024C0100'
    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
1420 GUIDED MISSILE COMPONENTS 1,913,367,053.00 1.91 billion 48

Insight

Over the 5-year window for award N0003024C0100, obligations are fully concentrated in PSC 1420, Guided Missile Components. The single PSC accounts for $1.91 billion across 48 awards, indicating a highly focused procurement profile with no observed distribution across other PSCs in the provided data. This concentration suggests the award activity is centered on a narrow product category rather than a diversified PSC mix.

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 = 'N0003024C0100'
    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 275,565,743.00 275.57 million 6
2025 1,637,801,310.00 1.64 billion 42

Insight

Obligations for PIID N0003024C0100 increased sharply from $275.57 million across 6 awards in 2024 to $1.64 billion across 42 awards in 2025. This indicates a significant expansion in both funding volume and award activity, with 2025 accounting for the clear majority of obligation within the 5-year window provided. The distribution suggests a concentrated escalation in contract activity rather than a stable year-over-year pattern.

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.