Award Number

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

Procurement summary for award number N0001924C0032 under agency ID 9700 over the last 5 years.

This award record shows 15 action entries in the last 5 years, with total obligations of 2.04 billion dollars. The average action value is 135,834,332.53.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the provided obligated totals for the analysis window and are based on the award-level record for PIID N0001924C0032.

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

The award record for PIID N0001924C0032 covers 15 actions across the last 5 years. Total obligated amount is 2,037,514,988, which reads as 2.04 billion dollars. The average action value is 135,834,332.53.

How to use this page

Use this page to review award-level obligation activity tied to PIID N0001924C0032 for agency ID 9700. The figures support quick comparison of total obligated value and action count within the selected 5-year window.

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 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 2,037,514,988.00 2.04 billion 14
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations are highly concentrated in the Department of the Navy, which accounts for $2.04 billion across 14 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in the record once with no obligated value, indicating negligible financial concentration outside the Navy. Overall, the award activity associated with PIID N0001924C0032 is dominated by a single agency.

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 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
RAYTHEON COMPANY 15090 2,037,514,988.00 2.04 billion 15

Insight

Over the 5-year window for award N0001924C0032, obligated dollars are fully concentrated with RAYTHEON COMPANY (CAGE 15090), which accounts for $2.04 billion across 15 awards. This indicates a highly concentrated vendor profile with no observed distribution among additional vendors in the provided data. The award activity suggests repeated obligations to a single incumbent or primary contractor over 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 = 'N0001924C0032'
    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 2,037,514,988.00 2.04 billion 15

Insight

Over the 5-year window, this award is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. The record reflects 15 awards totaling $2.04 billion, indicating a strong and consistent spend profile within a single industrial classification. No other NAICS codes are present in the provided rows, so there is no observable diversification in the reported 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 = 'N0001924C0032'
    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
1410 GUIDED MISSILES 2,037,514,988.00 2.04 billion 15

Insight

Over the past 5 years, this award is fully concentrated in PSC 1410, Guided Missiles, with $2.04 billion obligated across 15 awards. The obligation pattern indicates a narrow product mix and a strong alignment to a single PSC category rather than a diversified procurement profile. This concentration suggests the award’s activity is dominated by guided missile procurement.

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 5 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 increased from $736.57 million across 2 awards in 2024 to $1.30 billion across 13 awards in 2025, indicating a broader distribution of funding activity. The 2025 period reflects both a higher total obligation level and a much larger award count, suggesting less concentration in a small number of actions than in 2024.

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.