Award Number

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

Federal award record for award number N0001921C0020 under agency ID 9700, showing last full year obligations and action activity.

This page summarizes federal procurement activity for award number N0001921C0020 within agency ID 9700 during the last full year. The record shows 4 award actions with total obligated funding of 139,074 and an average action value of 34,768.5.

Generated at 03/20/2026

Analysis period: Last full year

Figures are based on the provided analysis window and may reflect award actions recorded in that period rather than the full life of the award.

Agency ID
9700
PIID
N0001921C0020
Type
Award
Total Obligated
139.07 thousand
139,074.00
Actions
4
Average Action Value
34,768.50

Overview

Award number N0001921C0020 is associated with agency ID 9700 and shows procurement activity in the last full year. The record includes 4 award actions with a combined obligated amount of 139,074 and an average action value of 34,768.5. These figures provide a compact view of recorded award activity for the period.

How to use this page

Use this page to review the basic obligation and action profile for award number N0001921C0020. The summary supports quick comparison across awards, filtering by agency ID 9700, and checking the scale of recorded activity in the last full year.

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 = 'N0001921C0020'
    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 139,074.00 139.07 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2

Insight

Award activity under PIID N0001921C0020 in the past year is concentrated in the Department of the Navy, which accounts for $139.07 thousand across 2 awards. DCMA also has 2 awards in the window, but those actions carry no obligated value, indicating administrative activity rather than funded obligation. Overall, obligated value is highly concentrated with the Navy despite an even split in award counts.

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 = 'N0001921C0020'
        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 81755 139,074.00 139.07 thousand 4

Insight

Within the 1-year window for award PIID N0001921C0020, obligations are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor received 4 awards totaling 139.07 thousand, indicating all recorded obligated value in this view is concentrated with one contractor rather than distributed across multiple vendors. This pattern suggests a narrow vendor base 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 = 'N0001921C0020'
    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 139,074.00 139.07 thousand 4

Insight

Within the 1-year window for award PIID N0001921C0020, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single reported NAICS accounts for 4 awards totaling $139.07 thousand, indicating no diversification across other industry codes in the provided data. This pattern suggests a narrow procurement profile for the award over the period.

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 = 'N0001921C0020'
    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
1510 AIRCRAFT, FIXED WING 139,074.00 139.07 thousand 4

Insight

Obligations under this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with 4 actions totaling $139.07 thousand over the 1-year window. This indicates a narrow procurement profile with no observed PSC diversification in the provided data. The distribution suggests all recorded spending under this award was directed to a single product/service category.

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 = 'N0001921C0020'
    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 139,074.00 139.07 thousand 4

Insight

Over the 1-year window, this award recorded 139.07 thousand in obligated funding across 4 awards in FY2025. The obligation pattern is concentrated within a single year, indicating all observed activity is current-period rather than distributed across multiple years. This limited time distribution suggests the award has a narrow recent funding footprint within the queried period.

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.