Vehicle Number

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

Federal procurement analysis for vehicle number associated with Agency ID 8000 and PIID NNJ09GA02B over the last 10 years.

This page summarizes award activity for vehicle number under Agency ID 8000 for PIID NNJ09GA02B across the last 10 years. The record shows 65 award actions with total obligations of $970.89 million and an average action value of $14.94 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are based on the provided readable total of $970.89 million and exact total of $970,886,433.58.

Agency ID
8000
PIID
NNJ09GA02B
Type
Vehicle
Total Obligated
970.89 million
970,886,433.58
Actions
65
Average Action Value
14,936,714.36

Overview

The procurement record for vehicle number under Agency ID 8000 and PIID NNJ09GA02B covers 65 award actions in the last 10 years. Total obligations reached $970,886,433.58, with an average action value of $14,936,714.36. This page is intended to support review of award volume and obligation levels for the identified vehicle.

How to use this page

Use this page to assess the scale and cadence of award activity tied to PIID NNJ09GA02B. The action count and obligated total provide a compact view of how much activity is recorded in the analysis window. It is suitable for quick reference when comparing this vehicle against other procurement records.

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 = 'NNJ09GA02B'
    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 970,886,433.58 970.89 million 65

Insight

Over the 10-year window, all reported obligations for PIID NNJ09GA02B are concentrated in a single top agency: the National Aeronautics and Space Administration. NASA accounts for $970.89 million across 65 awards, indicating a highly concentrated obligation pattern with no other agencies represented in this section. This suggests the vehicle has been used exclusively, or nearly exclusively, by NASA within the reported period.

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 = 'NNJ09GA02B'
        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 = 'NNJ09GA02B'
    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 970,886,433.58 970.89 million 65

Insight

Obligations under this vehicle are fully concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation, with $970.89 million across 65 awards over the 10-year window. This indicates a highly focused procurement pattern with no diversity across NAICS codes in the provided data. The average obligation per award is substantial, suggesting repeated use of the vehicle for freight air transportation requirements rather than a broad mix of services.

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 = 'NNJ09GA02B'
    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 970,886,433.58 970.89 million 65

Insight

Obligations under PIID NNJ09GA02B are fully concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch. Over the 10-year window, this PSC accounts for $970.89 million across 65 awards, indicating a strong and sustained focus in this procurement vehicle. The absence of other PSCs in the provided data suggests no meaningful diversification of obligations within this vehicle.

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 = 'NNJ09GA02B'
    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 597,242,255.08 597.24 million 16
2017 176,241,025.00 176.24 million 16
2018 137,161,558.32 137.16 million 23
2019 60,241,595.50 60.24 million 9
2020 -0.32 -0.32 1

Insight

Obligations under PIID NNJ09GA02B were heavily concentrated in 2016, when funding reached $597.24 million across 16 awards, far exceeding later years. Annual obligated amounts then declined sharply to $176.24 million in 2017 and $137.16 million in 2018, before falling further to $60.24 million in 2019. Activity continued to taper in 2020, with a negligible net obligation of -$0.32 on a single award, indicating that most obligations in the 10-year window were front-loaded.

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.