Award Number

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

Federal award record for PIID N0001920C0006 under agency ID 9700, showing two award actions in the last full year and zero obligated value.

This page summarizes the award identified by PIID N0001920C0006 for agency ID 9700 over the last full year. The record shows 2 award actions and a total obligated amount of 0.00.

Generated at 03/20/2026

Analysis period: Last full year

Amounts shown here reflect the provided analysis window and may appear as zero where no obligated value was recorded.

Agency ID
9700
PIID
N0001920C0006
Type
Award
Total Obligated
0.00
0.00
Actions
2
Average Action Value
0.00

Overview

The award record for PIID N0001920C0006 is associated with agency ID 9700 and reflects activity in the last full year. The dataset shows 2 award actions, with total obligated value reported as 0.00 and an average action value of 0. This indicates recorded action activity without obligated spending in the provided summary.

How to use this page

Use this page to review the award-level identifier, action count, and obligated value for the selected period. It is useful for quick validation of whether the record shows any obligated amount, and in this case the reported value is zero.

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 = 'N0001920C0006'
    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 0.00 0.00 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Within the 1-year window for PIID N0001920C0006, obligation activity is concentrated at zero across the listed agencies. DEPT OF THE NAVY and DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) each account for one award, but neither reports obligated dollars. This indicates award activity is present, while reported funding concentration is absent in the provided rows.

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 = 'N0001920C0006'
        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 0.00 0.00 2

Insight

Within the 1-year window for award N0001920C0006, all recorded activity is concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor appears on 2 awards, but the reported total obligated amount is $0.00, indicating no obligated dollars in the provided data despite repeated award activity. This suggests award activity is present, but financial concentration is not reflected in obligations for this period.

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 = 'N0001920C0006'
    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 0.00 0.00 2

Insight

Obligations for award N0001920C0006 in the past year are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award records two actions in this NAICS, with total obligated amount remaining at $0.00. This indicates activity in the category without recorded dollar obligation in the selected window.

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 = 'N0001920C0006'
    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 0.00 0.00 2

Insight

Within the 1-year window for award N0001920C0006, obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing. The record reflects two awards in this PSC, but total obligated dollars are 0.00, indicating no recorded obligation value in the period for this category. This suggests activity is limited to transaction count rather than funded obligation within the reported 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 = 'N0001920C0006'
    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 0.00 0.00 2

Insight

In the 1-year window, obligations for PIID N0001920C0006 are fully concentrated in 2025, with $0.00 obligated across 2 awards. This indicates activity occurred during the period but without recorded obligation amounts in the provided data. With only a single year represented, no year-over-year trend can be assessed from this view.

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.