This page summarizes procurement activity for award N0001918C1048 during the last full year. The award shows 7 actions and net obligations of -$39,615,235.23.
Award Number
Award Number 9700 / N0001918C1048 Federal Contract Action Summary (Last Year)
Award number N0001918C1048 under agency ID 9700 recorded 7 award actions in the last full year, with total obligations of -$39.62 million.
Dollar figures are shown as provided in the source data, including negative obligated amounts.
Overview
For the last full year, award N0001918C1048 in agency ID 9700 recorded 7 award actions. Total obligated value was -$39,615,235.23, which averages to -$5,659,319.32 per action. The page reflects the aggregate award record only and does not add details beyond the supplied totals.
How to use this page
Use this page to review the award-level obligation pattern for N0001918C1048 over the last full year. The action count and average action value help summarize how activity was distributed across the period. For more detail, compare this award with related records in the same agency or time frame.
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 = 'N0001918C1048'
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 | 4 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -39,615,235.23 | -39.62 million | 3 |
Insight
Within the 1-year window for award PIID N0001918C1048, obligations are concentrated almost entirely under DCMA, which accounts for -$39.62 million across 3 awards. The Department of the Navy has 4 awards associated with this PIID but shows no obligated amount in the provided rows. This pattern indicates that recent obligation activity is driven by DCMA, while Navy activity appears to be present but not currently funded in the reported period.
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 = 'N0001918C1048'
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 | -39,615,235.23 | -39.62 million | 7 |
Insight
Within the 1-year window for award N0001918C1048, obligations are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 81755). This vendor accounts for 7 awards and a net total obligated amount of -$39.62 million, indicating a downward obligation trend over the period rather than positive funding growth. With no other vendors listed in this section, there is no observed distribution across multiple suppliers.
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 = 'N0001918C1048'
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 | -39,615,235.23 | -39.62 million | 7 |
Insight
Obligations for PIID N0001918C1048 over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing, with no distribution across other NAICS codes in the provided data. This category accounts for 7 awards and a net total obligated amount of -$39.62 million, indicating a negative funding adjustment or deobligation rather than positive net obligation. The pattern suggests a single-industry obligation profile with all recorded activity centered in aircraft manufacturing.
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 = 'N0001918C1048'
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 | -39,615,235.23 | -39.62 million | 7 |
Insight
Obligations for PIID N0001918C1048 are concentrated entirely in PSC 1510, Aircraft, Fixed Wing. Over the 1-year window, this PSC accounts for -$39.62 million across 7 awards, indicating a narrow product mix with all recorded obligations tied to a single equipment category. The negative obligated total suggests deobligations or downward funding adjustments in this period.
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 = 'N0001918C1048'
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 | -39,615,235.23 | -39.62 million | 7 |
Insight
For the 1-year window, the award has obligations of -$39.62 million in FY2025 across 7 actions, indicating a net deobligation pattern. The activity is concentrated in a single fiscal year, with no multi-year distribution evident in the provided rows. This pattern suggests the award’s recent financial movement is driven by a small number of actions rather than broad, sustained obligation growth.
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.