Award Number

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

Award number N0001919C0013 for agency 9700 recorded 21 actions during the last full year, with total obligations of $96.62 million.

This page summarizes procurement activity tied to award number N0001919C0013 for agency ID 9700 over the last full year. The award shows 21 actions and total obligated dollars of $96,624,065.80.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are shown as provided, with a readable total of $96.62 million and an exact total of 96624065.8.

Agency ID
9700
PIID
N0001919C0013
Type
Award
Total Obligated
96.62 million
96,624,065.80
Actions
21
Average Action Value
4,601,145.99

Overview

For the last full year, award N0001919C0013 under agency 9700 had 21 recorded actions. Total obligations reached $96,624,065.80, which equals a readable total of $96.62 million. The average action value was $4,601,145.99.

How to use this page

Use this page to review the scale and cadence of activity associated with award number N0001919C0013. The action count, total obligated amount, and average action value provide a compact summary for procurement review and comparison.

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 = 'N0001919C0013'
    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 96,624,065.80 96.62 million 21

Insight

Within the 1-year window for PIID N0001919C0013, obligations are concentrated in a single agency: the Department of the Navy accounts for $96.62 million across 21 awards. This indicates a highly concentrated funding pattern with no other agencies represented in the provided rows. Such concentration suggests the award activity is primarily driven by one agency rather than a distributed interagency portfolio.

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 = 'N0001919C0013'
        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
LOCKHEED MARTIN CORPORATION 03640 96,624,065.80 96.62 million 21

Insight

Within the 1-year window for PIID N0001919C0013 at agency 9700, obligations are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 03640). The vendor accounts for $96.62 million across 21 awards, indicating a high degree of award and obligation concentration with no additional vendors represented in this result set.

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 = 'N0001919C0013'
    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
336411 AIRCRAFT MANUFACTURING 96,624,065.80 96.62 million 21

Insight

Obligations for PIID N0001919C0013 in the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for the entire reported obligated amount of $96.62 million across 21 awards, indicating a highly focused procurement profile with no visible diversification 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 = 'N0001919C0013'
    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
1520 AIRCRAFT, ROTARY WING 96,624,065.80 96.62 million 21

Insight

Obligations for PIID N0001919C0013 over the past year are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $96.62 million across 21 awards. This indicates a narrow product-service mix and suggests the contract action is focused on rotary-wing aircraft procurement or related support. No other PSCs are present in the provided data, so there is no evidence of diversification within this award window.

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 = 'N0001919C0013'
    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 96,624,065.80 96.62 million 21

Insight

During the 1-year window, obligations for PIID N0001919C0013 are concentrated in FY2025, with $96.62 million obligated across 21 awards. This indicates a relatively active award pattern in the period, with funding distributed across multiple actions rather than a single isolated obligation. No prior-year data is provided here, so a broader year-over-year trend cannot be assessed from this section alone.

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.