Award Number

Award Number 9700 / N0001924C0032 Federal Contract Action Summary (Last 10 Years)

Procurement summary for award number N0001924C0032 under Agency ID 9700, covering activity in the last 10 years.

This page summarizes the award record for PIID N0001924C0032 over the last 10 years. The award shows 15 actions and total obligated dollars of 2.04 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals shown here use the provided readable and exact obligation values for the same 10-year analysis window.

Agency ID
9700
PIID
N0001924C0032
Type
Award
Total Obligated
2.04 billion
2,037,514,988.00
Actions
15
Average Action Value
135,834,332.53

Overview

Over the last 10 years, award number N0001924C0032 recorded 15 actions and $2,037,514,988 in total obligations. The average action value is $135,834,332.53, which indicates a relatively high-dollar award history within the selected period.

How to use this page

Use this page to review the award-level obligation total and action count for N0001924C0032 under Agency ID 9700. The figures support basic workload, spending, and award-history analysis without adding assumptions beyond the reported totals.

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 = 'N0001924C0032'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,037,514,988.00 2.04 billion 14
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID N0001924C0032 are overwhelmingly concentrated in the DEPT OF THE NAVY, which accounts for $2.04 billion across 14 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears once in the 10-year window but shows no obligated amount. This distribution indicates the award activity is essentially Navy-led, with DCMA associated only with a non-obligated record.

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 = 'N0001924C0032'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
RAYTHEON COMPANY 15090 2,037,514,988.00 2.04 billion 15

Insight

RAYTHEON COMPANY is the sole top vendor identified for this award over the 10-year window, accounting for $2.04 billion across 15 awards. Obligations are fully concentrated with a single vendor, indicating a highly concentrated vendor distribution for PIID N0001924C0032. The award history suggests sustained reliance on this contractor rather than a diversified vendor base.

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 = 'N0001924C0032'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,037,514,988.00 2.04 billion 15

Insight

Over the 10-year window, obligations for award N0001924C0032 are entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This single NAICS accounts for $2.04 billion across 15 awards, indicating a highly focused procurement profile with no diversification visible in the provided rows. The distribution suggests the award’s obligations are concentrated within a specialized aerospace and defense manufacturing category.

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 = 'N0001924C0032'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
1410 GUIDED MISSILES 2,037,514,988.00 2.04 billion 15

Insight

Obligations for PIID N0001924C0032 are concentrated entirely in PSC 1410 (Guided Missiles), totaling $2.04 billion across 15 awards. This indicates a highly focused procurement profile with no apparent PSC diversification in the provided 10-year window. The award count suggests repeated contracting activity within the same product category rather than broad spending across multiple PSCs.

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 = 'N0001924C0032'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2024 736,566,672.00 736.57 million 2
2025 1,300,948,316.00 1.30 billion 13

Insight

Obligations under PIID N0001924C0032 increased from $736.57 million in 2024 to $1.30 billion in 2025, indicating a material year-over-year expansion. Award activity also became more concentrated in 2025, with 13 awards compared with 2 in 2024, suggesting broader distribution of obligated funds across more actions. This pattern reflects a higher level of procurement activity in the most recent year within the 10-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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.