Vehicle Number

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

Procurement analysis for vehicle number under PIID NNJ14RA01B at Agency ID 8000, covering the last 5 years of award activity.

This page summarizes federal procurement activity for the vehicle number record associated with PIID NNJ14RA01B. Over the last 5 years, the record shows 73 award actions and total obligated amount of 317.57 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar amounts are shown in both readable and exact forms, and the analysis window is limited to the last 5 years.

Agency ID
8000
PIID
NNJ14RA01B
Type
Vehicle
Total Obligated
317.57 million
317,569,878.21
Actions
73
Average Action Value
4,350,272.30

Overview

The vehicle number record for PIID NNJ14RA01B shows 73 award actions during the last 5 years. Total obligated amount is 317,569,878.21, with an average action value of 4,350,272.3. These figures reflect activity captured for Agency ID 8000 within the stated analysis window.

How to use this page

Use this page to review the scale and frequency of award actions tied to this vehicle number record. The totals and average action value provide a compact view of obligated spending across the last 5 years without adding assumptions about scope or performance.

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 5 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 317,569,878.21 317.57 million 73

Insight

Within the 5-year window for PIID NNJ14RA01B, obligations are concentrated entirely within a single agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for $317.57 million across 73 awards, indicating all recorded obligation activity in this segment is associated with one top agency rather than being distributed across multiple agencies. This concentration suggests the vehicle’s activity is agency-specific and heavily aligned to NASA demand.

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 5 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 5 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) 317,569,878.21 317.57 million 73

Insight

Over the 5-year window, obligations for vehicle PIID NNJ14RA01B are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $317.57 million across 73 awards, indicating a consistently focused procurement profile rather than a diversified industrial mix.

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 5 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) 317,569,878.21 317.57 million 73

Insight

Over the 5-year window, obligations for vehicle NNJ14RA01B are fully concentrated in PSC AR36, R&D – Space: Flight (Management/Support), with $317.57 million across 73 awards. This indicates a narrow procurement profile with no observed diversification across PSCs in the provided data. The volume of awards suggests recurring use of this category rather than a single large transaction.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 heavily front-loaded in the 5-year window, declining from 127.04 million across 27 awards in 2021 to 117.77 million across 19 awards in 2022 and 74.96 million across 16 awards in 2023. Activity drops sharply in 2024, with a net negative obligated amount of 2.21 million across 9 awards, indicating significant deobligation or adjustment activity. In 2025, only 7.27 thousand across 2 awards is recorded, suggesting minimal current-year obligation volume relative to prior years.

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.