This page summarizes procurement activity for award number NNJ06TA25C under agency 8000 over the last full year. The record includes 37 award actions with total obligations of $351,854,058.10 and an average action value of $9,509,569.14.
Award Number
Award Number 8000 / NNJ06TA25C Federal Contract Action Summary (Last Year)
Award number NNJ06TA25C for agency 8000 during the last full year shows 37 award actions and $351.85 million in total obligated value.
Dollar values are shown as reported in the source data, with the readable total rounded to $351.85 million.
Overview
Award number NNJ06TA25C is associated with agency 8000 and shows 37 award actions in the last full year. Total obligated value for the period is $351,854,058.10, which is about $351.85 million. The average value per action is $9,509,569.14.
How to use this page
Use this page to review award-level procurement activity for NNJ06TA25C within the selected analysis window. The figures support basic volume and value checks, including total obligation, action count, and average action value.
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 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 |
|---|---|---|---|---|
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 351,854,058.10 | 351.85 million | 37 |
Insight
Within the 1-year window, all reported obligations for PIID NNJ06TA25C are concentrated at the National Aeronautics and Space Administration. NASA accounts for $351.85 million across 37 awards, indicating a fully concentrated agency footprint in the provided data. This pattern suggests the award activity in scope is entirely associated with a single agency rather than distributed across multiple agencies.
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 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 | 04236 | 351,854,058.10 | 351.85 million | 37 |
Insight
LOCKHEED MARTIN CORPORATION is the sole vendor listed for this award over the 1-year window, accounting for 100% of the reported obligation. The award is highly concentrated, with 37 recorded awards totaling $351.85 million to CAGE 04236. This indicates a single-vendor funding profile with no visible distribution across additional contractors 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 = '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 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 |
|---|---|---|---|---|
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | 351,854,058.10 | 351.85 million | 37 |
Insight
Over the 1-year window for award NNJ06TA25C, obligations are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This category accounts for $351.85 million across 37 awards, indicating sustained procurement activity within a single science and engineering R&D line of business. No other NAICS codes are present in the provided data, so the observed distribution is entirely concentrated in this sector.
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 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 |
|---|---|---|---|---|
| AR33 | R&D- SPACE: FLIGHT (ADVANCED DEVELOPMENT) | 351,854,058.10 | 351.85 million | 37 |
Insight
Over the past 1 year, obligations for PIID NNJ06TA25C under Agency ID 8000 are concentrated entirely in PSC AR33, R&D - Space: Flight (Advanced Development). This PSC accounts for $351.85 million across 37 awards, indicating a high level of obligation concentration within a single product/service classification. The distribution suggests this award activity is narrowly focused on advanced space flight R&D rather than being spread across multiple PSCs.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 351,854,058.10 | 351.85 million | 37 |
Insight
For PIID NNJ06TA25C within the 1-year window, FY2025 accounts for $351.85 million in obligated value across 37 awards. The activity is concentrated in a single year, indicating no year-over-year distribution within the provided window. The average obligation per award is roughly $9.5 million, suggesting relatively high-value obligations in this period.
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.