Vehicle Number

Vehicle Number 8000 / NNJ14RA01B Federal Contract Action Summary (Last 10 Years)

Vehicle number record for PIID NNJ14RA01B at agency 8000, covering the last 10 years of award activity and obligations.

This page summarizes procurement activity for the vehicle number associated with PIID NNJ14RA01B at agency 8000 over the last 10 years. The record shows 184 award actions with total obligated amount of $873.05 million and an average action value of $4,744,856.24.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided obligated amount of $873,053,548.63 and may differ slightly from the rounded readable figure.

Agency ID
8000
PIID
NNJ14RA01B
Type
Vehicle
Total Obligated
873.05 million
873,053,548.63
Actions
184
Average Action Value
4,744,856.24

Overview

Over the last 10 years, this vehicle number record for PIID NNJ14RA01B at agency 8000 reflects 184 award actions and $873,053,548.63 in total obligations. The average action value across the period is $4,744,856.24. These figures provide a procurement-level view of activity tied to this vehicle record.

How to use this page

Use this page to review long-term obligation volume and award count associated with the vehicle number. The analysis window and action totals support comparison across time, while the exact obligation figure preserves the underlying reported value.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = 'NNJ14RA01B'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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 873,053,548.63 873.05 million 184

Insight

Within the 10-year window for PIID NNJ14RA01B, all reported obligated dollars are concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $873.05 million across 184 awards, indicating a highly concentrated obligation pattern with no distribution across additional agencies in the provided data. This suggests the vehicle has been used exclusively, or nearly so, for NASA-related obligations over the period reflected here.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = 'NNJ14RA01B'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = 'NNJ14RA01B'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 873,053,548.63 873.05 million 184

Insight

Over the 10-year window, obligations under PIID NNJ14RA01B are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $873.05 million across 184 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = 'NNJ14RA01B'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AR36 R&D- SPACE: FLIGHT (MANAGEMENT/SUPPORT) 873,053,548.63 873.05 million 184

Insight

Obligations under PIID NNJ14RA01B over the 10-year window are fully concentrated in PSC AR36, R&D - Space: Flight (Management/Support), with $873.05 million across 184 awards. This indicates a highly focused requirement profile with no distribution across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within a single PSC category rather than a diversified mix of goods or services.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = 'NNJ14RA01B'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 121,506,196.45 121.51 million 20
2017 70,304,302.65 70.30 million 18
2018 121,027,750.66 121.03 million 22
2019 121,471,751.27 121.47 million 24
2020 121,173,669.39 121.17 million 27
2021 127,041,629.96 127.04 million 27
2022 117,772,717.78 117.77 million 19
2023 74,961,496.59 74.96 million 16
2024 -2,213,240.12 -2.21 million 9
2025 7,274.00 7.27 thousand 2

Insight

Obligations for PIID NNJ14RA01B are concentrated in the 2018–2022 period, when annual totals remained near or above $117 million and award counts ranged from 19 to 27. Activity was lower in 2017 at $70.30 million across 18 awards, then declined in 2023 to $74.96 million and in 2024 to a net negative obligation of $2.21 million, with only 9 awards. Preliminary 2025 activity is minimal at $7.27 thousand across 2 awards, indicating a sharp reduction in recent obligated value and 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.