Vehicle Number

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

Federal procurement page for vehicle number under PIID NNJ16GX08B, showing last 10 years of award activity for agency 8000.

This page summarizes procurement records for the vehicle number associated with PIID NNJ16GX08B over the last 10 years. The record shows 135 award actions and total obligated spending of $3.37 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar amounts reflect reported obligated value for the analysis window, with an exact total of 3368688187.9 and an average action value of 24953245.84.

Agency ID
8000
PIID
NNJ16GX08B
Type
Vehicle
Total Obligated
3.37 billion
3,368,688,187.90
Actions
135
Average Action Value
24,953,245.84

Overview

The analysis window covers the last 10 years of award activity tied to vehicle number and PIID NNJ16GX08B for agency 8000. Across that period, the record includes 135 award actions and total obligated funding of $3.37 billion, with an average action value of $24,953,245.84.

How to use this page

Use this page to review the scale and frequency of procurement activity associated with the vehicle number entry. The totals support quick comparisons of overall obligated value, action count, and average action size within the selected time frame.

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 = 'NNJ16GX08B'
    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 3,368,688,187.90 3.37 billion 135

Insight

For PIID NNJ16GX08B over the 10-year window, obligations are fully concentrated in a single agency: NASA, with $3.37 billion across 135 awards. This indicates that the vehicle is used exclusively or overwhelmingly within the originating agency, with no visible cross-agency distribution in the provided data. The volume of awards suggests repeated use of the vehicle rather than reliance on a small number of large awards.

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 = 'NNJ16GX08B'
        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 = 'NNJ16GX08B'
    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
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 3,368,688,187.90 3.37 billion 135

Insight

Over the 10-year window, obligations for PIID NNJ16GX08B are concentrated entirely in NAICS 481212, Nonscheduled Chartered Freight Air Transportation. This category accounts for $3.37 billion across 135 awards, indicating a highly focused obligation pattern 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 = 'NNJ16GX08B'
    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
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH 3,368,688,187.90 3.37 billion 135

Insight

Obligations for this vehicle are fully concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch, with $3.37 billion across 135 awards over the 10-year window. This indicates the vehicle is being used almost exclusively for space transportation/launch requirements rather than a diversified mix of product or service categories. The award count suggests repeated use of the vehicle for this PSC, but no distribution across additional PSCs is present in the provided data.

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 = 'NNJ16GX08B'
    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 117,631,181.00 117.63 million 5
2017 106,420,800.00 106.42 million 7
2018 181,080,247.25 181.08 million 13
2019 335,651,525.65 335.65 million 17
2020 462,606,576.68 462.61 million 21
2021 484,590,743.69 484.59 million 23
2022 474,607,440.81 474.61 million 17
2023 440,413,844.23 440.41 million 13
2024 273,336,168.10 273.34 million 10
2025 492,349,660.49 492.35 million 9

Insight

Obligations for PIID NNJ16GX08B increased sharply over the period, rising from $117.63 million in 2016 to a peak of $492.35 million in 2025. Activity was concentrated in the later years, with annual obligations exceeding $440 million from 2021 through 2025 except for 2024, which declined to $273.34 million. Award counts also expanded from 5 in 2016 to a high of 23 in 2021, then generally declined to 9 in 2025 despite the rebound in obligated dollars.

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.