This page summarizes federal procurement activity for award number N0001918C1012 for agency ID 9700 across the last 5 years. The award has 60 actions and total obligated funding of $890,213,427.72, with an average action value of $14,836,890.46.
Award Number
Award Number 9700 / N0001918C1012 Federal Contract Action Summary (Last 5 Years)
FPDS award record for award number N0001918C1012 under agency ID 9700, showing obligations and actions over the last 5 years.
Figures reflect the provided analysis window and obligation totals for this award record; total obligated readable is $890.21 million.
Overview
The award number N0001918C1012 is associated with agency ID 9700 and shows federal procurement activity within the last 5 years. Across that period, the award totals $890,213,427.72 in obligated funds across 60 actions. The average action value is $14,836,890.46.
How to use this page
Use this page to review the obligation level and action count tied to award number N0001918C1012. The figures support basic trend review, record identification, and comparison with other awards in the same agency context. The page reflects only the inputs provided for the stated analysis 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 = 'N0001918C1012'
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 | 890,213,427.72 | 890.21 million | 58 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations for PIID N0001918C1012 are heavily concentrated in the Department of the Navy, which accounts for $890.21 million across 58 awards in the 5-year window. The only other agency listed, DCMA, has 2 awards but no obligated amount reported, indicating that obligated activity is effectively centered within the Navy. This distribution suggests limited cross-agency funding concentration and minimal obligated value outside the primary 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 = 'N0001918C1012'
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 |
|---|---|---|---|---|
| BOEING COMPANY, THE | 76301 | 890,213,427.72 | 890.21 million | 60 |
Insight
All reported obligations for PIID N0001918C1012 over the 5-year window are concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $890.21 million across 60 awards, indicating a highly concentrated award pattern with no additional top-vendor distribution reflected in the provided data.
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 = 'N0001918C1012'
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 | 890,213,427.72 | 890.21 million | 60 |
Insight
Obligations under PIID N0001918C1012 in the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $890.21 million across 60 awards. This indicates a highly focused procurement profile with no observed diversification across other NAICS codes in the provided data. The concentration suggests the award activity is tied directly to aircraft manufacturing work rather than a mixed industrial base.
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 = 'N0001918C1012'
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 |
|---|---|---|---|---|
| AC14 | NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES | 890,213,427.72 | 890.21 million | 60 |
Insight
Over the 5-year window, obligations are entirely concentrated in PSC AC14, which accounts for the full $890.21 million reported for this award. The award count of 60 indicates repeated activity under the same PSC rather than diversification across multiple product or service categories. This pattern suggests sustained funding concentrated in National Defense R&D administrative expense services.
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 = 'N0001918C1012'
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 | 71,312,000.00 | 71.31 million | 15 |
| 2022 | 56,349,302.05 | 56.35 million | 9 |
| 2023 | 101,649,552.40 | 101.65 million | 12 |
| 2024 | 564,564,223.06 | 564.56 million | 14 |
| 2025 | 96,338,350.21 | 96.34 million | 10 |
Insight
Obligations for PIID N0001918C1012 were uneven over the 5-year period, with a pronounced spike in 2024 at $564.56 million, far above all other years. Outside that peak, annual obligations were comparatively moderate, ranging from $56.35 million to $101.65 million in 2022, 2023, and 2025, with 2021 at $71.31 million. Award counts were relatively stable at 9 to 15 per year, indicating that the 2024 increase was driven primarily by higher dollars per award rather than a large change 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.