Award Number

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

FPDS award page for award number N0001919F2474 under agency ID 9700, summarizing obligations and actions over the last 10 years.

This page provides a concise procurement profile for award number N0001919F2474 associated with agency ID 9700. It covers the last 10 years of recorded activity, including total obligations and action count.

Generated at 03/20/2026

Analysis period: Last 10 years

Values shown here are based on the provided analysis window and include total obligated amount of 1.94 billion across 58 actions.

Agency ID
9700
PIID
N0001919F2474
Type
Award
Total Obligated
1.94 billion
1,938,555,790.62
Actions
58
Average Action Value
33,423,375.70

Overview

Award number N0001919F2474 under agency ID 9700 shows 58 recorded actions in the last 10 years. Total obligated funding is 1,938,555,790.62, with an average action value of 33,423,375.7. The data supports review of obligation scale and action frequency for this award record.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for N0001919F2474. It is useful for quick screening before deeper FPDS analysis or comparison with related award records.

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 = 'N0001919F2474'
    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 1,938,555,790.62 1.94 billion 57
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID N0001919F2474 are highly concentrated within the DEPT OF THE NAVY, which accounts for 57 awards and approximately $1.94 billion in total obligated value over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and carries no obligated value, indicating no material funding distribution outside the Navy in the provided data. This pattern suggests the award’s obligation history is effectively centered on 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 = 'N0001919F2474'
        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
LOCKHEED MARTIN CORPORATION 81755 1,938,555,790.62 1.94 billion 58

Insight

LOCKHEED MARTIN CORPORATION is the sole top vendor for this award over the 10-year window, accounting for $1.94 billion across 58 awards. Obligations are fully concentrated with one vendor, indicating a highly concentrated spending pattern with repeated award activity under this PIID. This level of vendor concentration suggests limited distribution across suppliers for the period reviewed.

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 = 'N0001919F2474'
    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
336411 AIRCRAFT MANUFACTURING 1,938,555,790.62 1.94 billion 58

Insight

Obligations for this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.94 billion across 58 actions over the 10-year window. This indicates a highly focused procurement profile tied to aircraft manufacturing activity rather than a diversified NAICS mix. The repeated award count suggests sustained obligation activity within the same industrial 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 = 'N0001919F2474'
    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
AC15 NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP 1,286,722,666.43 1.29 billion 37
AC15 R&D- DEFENSE SYSTEM: AIRCRAFT (OPERATIONAL SYSTEMS DEVELOPMENT) 651,833,124.19 651.83 million 21

Insight

Obligations under PIID N0001919F2474 are concentrated in two PSCs, both coded AC15, indicating a narrow funding profile within this award over the 10-year window. The largest PSC category accounts for $1.29 billion across 37 awards, while the second accounts for $651.83 million across 21 awards, together representing the full set of PSC activity provided. This distribution suggests substantial emphasis on defense R&D-related work, with the larger share directed to national defense R&D services and a secondary concentration in aircraft operational systems development.

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 = 'N0001919F2474'
    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
2018 84,052,648.00 84.05 million 1
2019 140,490,050.21 140.49 million 8
2020 503,384,786.32 503.38 million 15
2021 441,836,760.79 441.84 million 7
2022 308,713,613.98 308.71 million 10
2023 232,969,480.78 232.97 million 5
2024 180,534,145.54 180.53 million 5
2025 46,574,305.00 46.57 million 7

Insight

Obligations for PIID N0001919F2474 peaked in 2020 at $503.38 million across 15 awards, after rising from $84.05 million in 2018 and $140.49 million in 2019. Funding then declined each year from 2021 through 2025, falling to $46.57 million in 2025, while award counts remained relatively variable and did not track obligations proportionally. The pattern indicates a concentrated funding spike in 2020 followed by a sustained reduction in annual obligated amounts.

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.