Award Number

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

FPDS award page for award number N0001919F2474 under agency ID 9700, covering the last 5 years of obligated activity.

This page summarizes procurement activity tied to award number N0001919F2474. Over the last 5 years, it reflects 34 award actions with total obligated value of 1.21 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures are based on the provided analysis window and exact obligated total of 1,210,628,306.09.

Agency ID
9700
PIID
N0001919F2474
Type
Award
Total Obligated
1.21 billion
1,210,628,306.09
Actions
34
Average Action Value
35,606,714.89

Overview

The award number N0001919F2474 shows 34 recorded actions in the last 5 years, with an exact obligated total of 1,210,628,306.09. The average action value is 35,606,714.89, which indicates a relatively high-dollar award pattern across the period.

How to use this page

Use this page to review the award-level obligation history tied to PIID N0001919F2474 and compare activity across the 34 actions. The summary supports basic procurement analysis by showing total obligated value, action count, and average action size within the selected time 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 = 'N0001919F2474'
    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,210,628,306.09 1.21 billion 33
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award activity is highly concentrated in the Department of the Navy, which accounts for $1.21 billion across 33 awards in the 5-year window. By contrast, DCMA shows a single award with no obligated value, indicating negligible funding distribution outside the Navy. Overall, this PIID’s activity is overwhelmingly concentrated within one agency, with no meaningful spread across the remaining listed 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 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 81755 1,210,628,306.09 1.21 billion 34

Insight

LOCKHEED MARTIN CORPORATION is the sole top vendor captured for PIID N0001919F2474 over the 5-year window, with 34 awards totaling $1.21 billion. This indicates complete vendor concentration within the reported top-vendor results for this award. The distribution is narrow, with all identified obligated funding in this section attributed to a single contractor.

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 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
336411 AIRCRAFT MANUFACTURING 1,210,628,306.09 1.21 billion 34

Insight

Obligations for PIID N0001919F2474 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 5-year window. The award accounts for $1.21 billion across 34 obligations, indicating repeated funding within a single industry category rather than diversification across multiple NAICS codes. This concentration suggests the award is tightly aligned to aircraft manufacturing requirements.

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 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
AC15 NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP 1,210,628,306.09 1.21 billion 34

Insight

Within the 5-year window for award PIID N0001919F2474, PSC AC15 accounts for the full reported obligation total of $1.21 billion across 34 awards. This indicates a highly concentrated obligation profile with no other PSC categories represented in the provided results. The volume of awards alongside the total dollars suggests repeated use of the same PSC for a substantial share of funding activity.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 declined steadily over the 5-year window, falling from $441.84 million in 2021 to $46.57 million in 2025. Award activity was not proportional to dollars obligated: the highest award count occurred in 2022 and 2025 (10 and 7 awards, respectively), while the largest funding levels were concentrated in 2021. Overall, the pattern indicates a downward shift in obligated value with relatively limited year-to-year consistency in award volume.

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.