This page summarizes the federal procurement record for award number NNJ06TA25C. Over the last 5 years, the award shows 196 actions with total obligated value of $2.31 billion.
Award Number
Award Number 8000 / NNJ06TA25C Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number NNJ06TA25C under agency ID 8000, summarizing activity over the last 5 years.
Totals are based on the provided analysis window and reported obligated amounts; average action value is $11,769,048.11.
Overview
Award number NNJ06TA25C is tied to agency ID 8000 and reflects 196 recorded actions in the last 5 years. The reported total obligated amount is $2,306,733,429.81, with an average action value of $11,769,048.11. This page is intended to support review of award-level procurement activity using the provided FPDS inputs.
How to use this page
Use this page to review the award's activity volume, obligated spending, and average action value within the last 5 years. It is most useful for quick award-level analysis, cross-checking procurement totals, and identifying the scale of contract action activity associated with NNJ06TA25C.
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 = '8000' AND content__award__awardID__awardContractID__PIID = 'NNJ06TA25C'
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 |
|---|---|---|---|---|
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 2,306,733,429.81 | 2.31 billion | 196 |
Insight
Obligations for PIID NNJ06TA25C are fully concentrated within a single agency over the 5-year window. NATIONAL AERONAUTICS AND SPACE ADMINISTRATION accounts for $2.31 billion across 196 awards, indicating that the award activity is entirely within NASA and not distributed across multiple agencies. This concentration suggests the award is part of a sustained, agency-specific procurement relationship rather than a diversified federal obligation pattern.
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 = '8000' AND content__award__awardID__awardContractID__PIID = 'NNJ06TA25C'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 04236 | 2,306,733,429.81 | 2.31 billion | 196 |
Insight
Over the 5-year window, obligations under PIID NNJ06TA25C are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 04236). The vendor accounts for 196 awards totaling $2.31 billion, indicating a highly concentrated award pattern with no visible distribution across other vendors in the provided data. This level of concentration suggests the procurement activity for this award is dependent on one supplier.
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 = '8000' AND content__award__awardID__awardContractID__PIID = 'NNJ06TA25C'
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 |
|---|---|---|---|---|
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | 2,306,733,429.81 | 2.31 billion | 196 |
Insight
Over the 5-year window, obligations for this award are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. The award reflects 196 actions totaling $2.31 billion, indicating a sustained and highly focused R&D procurement profile rather than a diversified industry mix.
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 = '8000' AND content__award__awardID__awardContractID__PIID = 'NNJ06TA25C'
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 |
|---|---|---|---|---|
| AR33 | R&D- SPACE: FLIGHT (ADVANCED DEVELOPMENT) | 2,306,733,429.81 | 2.31 billion | 196 |
Insight
Over the 5-year window, obligations for award NNJ06TA25C are fully concentrated in PSC AR33, R&D - Space: Flight (Advanced Development), with $2.31 billion obligated across 196 awards. This indicates a strong concentration of funding in a single product/service category rather than a distributed mix of PSCs. The volume of awards suggests repeated use of this PSC over time, but no diversification beyond AR33 is evident in the provided data.
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 = '8000' AND content__award__awardID__awardContractID__PIID = 'NNJ06TA25C'
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 | 558,294,516.67 | 558.29 million | 52 |
| 2022 | 500,156,901.44 | 500.16 million | 40 |
| 2023 | 527,399,704.14 | 527.40 million | 38 |
| 2024 | 369,028,249.46 | 369.03 million | 29 |
| 2025 | 351,854,058.10 | 351.85 million | 37 |
Insight
Obligations for PIID NNJ06TA25C under Agency 8000 declined over the 5-year window from $558.29 million in 2021 to $351.85 million in 2025, a net reduction of about 37%. Annual obligations were relatively stable from 2021 through 2023, then fell more sharply in 2024 and remained lower in 2025. Award counts also decreased from 52 in 2021 to 29 in 2024 before rising to 37 in 2025, indicating a more distributed award pattern in 2025 despite continued lower obligation levels.
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.