Award Number

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

Award number N0001924C0032 for agency ID 9700 shows 13 recorded actions in the last full year, with total obligations of 1.30 billion.

This page summarizes procurement activity for award N0001924C0032 under agency ID 9700 during the last full year. The award shows $1,300,948,316 in total obligated value across 13 actions, averaging $100,072,947.38 per action.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may differ from other reporting periods or source extracts.

Agency ID
9700
PIID
N0001924C0032
Type
Award
Total Obligated
1.30 billion
1,300,948,316.00
Actions
13
Average Action Value
100,072,947.38

Overview

In the last full year, award N0001924C0032 recorded 13 actions tied to agency ID 9700. The award’s total obligated amount was $1,300,948,316, with an average action value of $100,072,947.38.

How to use this page

Use this page to review the award-level obligation total and action count for the selected period. The figures provide a concise view of activity volume and funding concentration for this award.

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 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 1,300,948,316.00 1.30 billion 12
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award activity is highly concentrated in DEPT OF THE NAVY, which accounts for $1.30 billion across 12 awards in the one-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears once, but with no obligated dollars, indicating a non-obligating or administrative action rather than a funding source. Overall, the obligation profile is dominated by the Navy, with minimal distribution beyond that 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 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
RAYTHEON COMPANY 15090 1,300,948,316.00 1.30 billion 13

Insight

Within the 1-year window for award N0001924C0032, obligations are fully concentrated with a single vendor. RAYTHEON COMPANY (CAGE 15090) accounts for 13 awards totaling $1.30 billion, indicating complete vendor concentration for this award. This distribution suggests the award activity is not diversified across multiple suppliers.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,300,948,316.00 1.30 billion 13

Insight

For PIID N0001924C0032 over the last 1 year, all reported obligation is concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for 1.30 billion across 13 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided 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 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
1410 GUIDED MISSILES 1,300,948,316.00 1.30 billion 13

Insight

Obligations under PIID N0001924C0032 in the 1-year window are fully concentrated in PSC 1410, Guided Missiles, with $1.30 billion obligated across 13 awards. This indicates a highly focused procurement profile with no diversification across other product or service categories in the provided data. The award activity is therefore dominated by a single PSC, suggesting this category drives the contract’s overall obligation pattern.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,300,948,316.00 1.30 billion 13

Insight

Over the past 1 year, obligations for PIID N0001924C0032 are highly concentrated in 2025, with $1.30 billion obligated across 13 awards. The volume suggests a small number of awards account for a substantial level of activity within the window, indicating a concentrated obligation pattern rather than broad distribution across multiple years. With only one year present, no multi-year trend can be assessed.

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.