Vehicle Number

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

FPDS query page for vehicle number records associated with Agency ID 8000 and PIID NNJ16GU21B over the last 10 years.

This page summarizes federal procurement activity for the vehicle number field tied to Agency ID 8000 and PIID NNJ16GU21B. The analysis window covers the last 10 years and shows 129 award actions with total obligated value of $3.46 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided readable amount of $3.46 billion and exact obligated value of $3,461,180,508.98, with an average action value of $26,830,856.66.

Agency ID
8000
PIID
NNJ16GU21B
Type
Vehicle
Total Obligated
3.46 billion
3,461,180,508.98
Actions
129
Average Action Value
26,830,856.66

Overview

The page presents award activity linked to the vehicle number field for Agency ID 8000 under PIID NNJ16GU21B. Across the last 10 years, the record shows 129 award actions and total obligated funding of $3,461,180,508.98. The average obligated value per action is $26,830,856.66.

How to use this page

Use this page to review how award activity is distributed across the vehicle number record for the specified agency and PIID. It supports procurement analysis by providing a focused view of total obligations, action volume, and average action value within the selected 10-year period.

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 = 'NNJ16GU21B'
    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,461,180,508.98 3.46 billion 129

Insight

For PIID NNJ16GU21B over the 10-year window, all recorded obligation is concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $3.46 billion across 129 awards, indicating a highly concentrated award pattern with no visible distribution across other agencies in the provided data.

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 = 'NNJ16GU21B'
        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 = 'NNJ16GU21B'
    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,461,180,508.98 3.46 billion 129

Insight

Over the 10-year window, obligations for PIID NNJ16GU21B are fully concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation. This NAICS accounts for $3.46 billion across 129 awards, indicating a highly focused purchasing pattern with no diversification across other industry codes in the provided data. The concentration suggests the vehicle is being used consistently for a single service category rather than as a broad multipurpose award instrument.

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 = 'NNJ16GU21B'
    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,461,180,508.98 3.46 billion 129

Insight

All obligated funding in this 10-year window is concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch, totaling $3.46 billion across 129 awards. This indicates a highly focused vehicle profile with no observed diversification across other PSCs in the provided data. The concentration suggests the entity’s obligations under PIID NNJ16GU21B are dominated by space transportation/launch requirements.

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 = 'NNJ16GU21B'
    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 53,057,000.00 53.06 million 6
2017 117,866,768.50 117.87 million 11
2018 157,450,231.50 157.45 million 21
2019 442,332,882.08 442.33 million 18
2020 362,635,328.92 362.64 million 12
2021 397,706,072.00 397.71 million 15
2022 516,727,271.45 516.73 million 12
2023 383,876,164.00 383.88 million 11
2024 468,522,914.65 468.52 million 12
2025 561,005,875.88 561.01 million 11

Insight

Obligations for PIID NNJ16GU21B under agency 8000 increased sharply over the period, rising from $53.06 million in 2016 to $561.01 million in 2025, with the highest annual obligation in 2025. The pattern is uneven rather than linear, with major spikes in 2019, 2022, 2024, and 2025, indicating that funding is concentrated in a few high-obligation years. Award counts remained relatively modest and stable after peaking at 21 in 2018, suggesting that obligation growth is driven more by larger awards than by a sustained increase in transaction 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.