This page summarizes the federal procurement record for award number NNJ06TA25C across the last 10 years. The record shows 412 award actions and total obligated dollars of 7,038,105,848.16, with an average action value of 17,082,781.18.
Award Number
Award Number 8000 / NNJ06TA25C Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number NNJ06TA25C under agency ID 8000, summarizing obligations and action history over the last 10 years.
Amounts reflect the provided analysis window and may differ from totals outside the last 10 years.
Overview
The award record for NNJ06TA25C under agency ID 8000 shows a high-volume obligation history over the last 10 years. Total obligated dollars are 7,038,105,848.16 across 412 actions, producing an average action value of 17,082,781.18. These figures provide a concise view of activity tied to this award number within the selected period.
How to use this page
Use this page to review the award’s obligation level and action count before moving to the underlying transaction detail. The data is useful for identifying the scale of procurement activity associated with NNJ06TA25C and for comparing the award against other records in the same agency context. The analysis is limited to the last 10 years and reflects the values provided here.
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 10 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 | 7,038,105,848.16 | 7.04 billion | 412 |
Insight
All obligated dollars in this 10-year window are concentrated in a single agency, the National Aeronautics and Space Administration, indicating a fully centralized funding profile for PIID NNJ06TA25C. NASA accounts for $7.04 billion across 412 awards, which suggests repeated obligation activity within the same agency rather than broad interagency distribution.
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 10 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 | 5,766,074,197.58 | 5.77 billion | 379 |
| LOCKHEED MARTIN CORPORATION | 1,272,031,650.58 | 1.27 billion | 33 |
Insight
Award activity is highly concentrated with LOCKHEED MARTIN CORPORATION, which accounts for the largest share of obligations in the 10-year window. The vendor appears in two rows, with $5.77 billion across 379 awards under CAGE code 04236 and an additional $1.27 billion across 33 awards without a CAGE code listed. This distribution indicates substantial reliance on the same vendor name across multiple award records.
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 10 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 | 7,038,105,848.16 | 7.04 billion | 412 |
Insight
Obligations under this award are entirely concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 10-year window, this category accounts for $7.04 billion across 412 awards, indicating a sustained and highly focused R&D procurement pattern. No other NAICS categories are reflected in the provided rows, so the observed distribution is fully concentrated in this single code.
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 10 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) | 7,038,105,848.16 | 7.04 billion | 412 |
Insight
Over the 10-year window, obligations for PIID NNJ06TA25C are concentrated entirely in PSC AR33, R&D - Space: Flight (Advanced Development), with $7.04 billion obligated across 412 awards. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The high award count alongside the large obligated amount suggests sustained, repeated procurement activity under the same PSC.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 1,201,977,079.29 | 1.20 billion | 35 |
| 2017 | 687,413,226.36 | 687.41 million | 44 |
| 2018 | 998,213,724.10 | 998.21 million | 48 |
| 2019 | 1,010,736,735.48 | 1.01 billion | 39 |
| 2020 | 833,031,653.12 | 833.03 million | 50 |
| 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 were highest in 2016 at $1.20 billion, then generally trended downward over the 10-year window, with a brief rebound in 2018–2019 before declining to $351.85 million in 2025. Award activity was more variable, ranging from 29 to 52 awards annually, with the highest counts in 2020–2021 despite lower obligated amounts than the earlier peak years. Overall, the pattern indicates a shift from higher-dollar concentration in the earlier period to lower annual obligation levels in recent years, without a proportional drop in award count.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.