Vehicle Number

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

Analysis of vehicle number for PIID NNJ09GA04B at Agency ID 8000 over the last 10 years shows 68 award actions totaling $1.30 billion.

This page summarizes federal procurement activity for vehicle number under PIID NNJ09GA04B at Agency ID 8000. In the last 10 years, the record includes 68 award actions with total obligated amount of $1,296,099,663.71.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are shown in both readable and exact form; the average action value is $19,060,289.17.

Agency ID
8000
PIID
NNJ09GA04B
Type
Vehicle
Total Obligated
1.30 billion
1,296,099,663.71
Actions
68
Average Action Value
19,060,289.17

Overview

The procurement record for vehicle number under PIID NNJ09GA04B shows sustained award activity across the last 10 years. Total obligations reached $1,296,099,663.71 across 68 award actions, for an average action value of $19,060,289.17. This page is intended to support review of the entity-level award history tied to this vehicle identifier.

How to use this page

Use this page to review the obligation volume and action count associated with vehicle number for PIID NNJ09GA04B. The figures provide a compact view of procurement activity at Agency ID 8000 and can be used as a starting point for further contract or award analysis.

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 = 'NNJ09GA04B'
    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 1,296,099,663.71 1.30 billion 68

Insight

For PIID NNJ09GA04B over the 10-year window, obligations are fully concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $1.30 billion across 68 awards, indicating a highly concentrated award pattern with no other agencies represented in the provided data. This concentration suggests the vehicle has been used primarily to support NASA requirements rather than broader interagency use.

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 = 'NNJ09GA04B'
        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 = 'NNJ09GA04B'
    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 1,296,099,663.71 1.30 billion 68

Insight

Obligations are fully concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation, with $1.30 billion across 68 awards over the 10-year window. This indicates a highly focused procurement profile for this vehicle, with no evidence in the provided rows of diversification across other NAICS codes. The award count suggests repeated use of the same industry category rather than a broad distribution of obligations.

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 = 'NNJ09GA04B'
    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 1,296,099,663.71 1.30 billion 68

Insight

Obligations for PIID NNJ09GA04B over the 10-year window are fully concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch. This PSC accounts for $1.30 billion across 68 awards, indicating sustained reliance on a single vehicle category rather than a distributed mix of PSCs. The pattern suggests the award activity is highly specialized and consistently centered on space transportation/launch support.

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 = 'NNJ09GA04B'
    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 463,522,216.34 463.52 million 10
2017 275,203,931.71 275.20 million 15
2018 311,419,983.96 311.42 million 22
2019 245,953,532.20 245.95 million 20
2022 -0.50 -0.50 1

Insight

Obligations under PIID NNJ09GA04B are concentrated in 2016–2019, with annual funding declining from $463.52 million in 2016 to $245.95 million in 2019. Award activity is also clustered in that period, increasing from 10 awards in 2016 to a peak of 22 in 2018 before easing to 20 in 2019. The only later entry is a negligible -$0.50 obligation in 2022 tied to one award, indicating no material recent funding activity in the 10-year window.

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.