Vehicle Number

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

Vehicle number records for PIID NNJ15HK11B under agency 8000 show 102 award actions over the last 5 years, with total obligated value of $875.29 million.

This page summarizes procurement activity for the vehicle number entity tied to PIID NNJ15HK11B within agency 8000. Over the last 5 years, the record includes 102 award actions and $875,288,477.17 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the stated 5-year analysis window and the exact obligated amount of $875,288,477.17 across 102 actions.

Agency ID
8000
PIID
NNJ15HK11B
Type
Vehicle
Total Obligated
875.29 million
875,288,477.17
Actions
102
Average Action Value
8,581,259.58

Overview

The vehicle number entity for agency 8000 and PIID NNJ15HK11B recorded 102 award actions in the last 5 years. Total obligated value was $875,288,477.17, with an average action value of $8,581,259.58.

How to use this page

Use this page to review the scale and frequency of award activity associated with the vehicle number record. The action count, total obligated amount, and average action value provide a concise view of procurement volume for the selected 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 = 'NNJ15HK11B'
    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 875,288,477.17 875.29 million 102

Insight

Over the 5-year window, all reported obligations for vehicle PIID NNJ15HK11B are concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $875.29 million across 102 awards, indicating complete agency-level concentration in the available data. This pattern suggests the vehicle is used exclusively, or nearly exclusively, by NASA within the observed 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 = 'NNJ15HK11B'
        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 = 'NNJ15HK11B'
    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) 875,288,477.17 875.29 million 102

Insight

Over the 5-year window for PIID NNJ15HK11B, obligations are concentrated entirely in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $875.29 million across 102 awards, indicating a highly focused contracting profile with no other NAICS codes appearing in the provided rows. The distribution suggests this vehicle is used primarily for physical, engineering, and life sciences R&D requirements.

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 = 'NNJ15HK11B'
    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
AR12 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH 875,288,477.17 875.29 million 102

Insight

Over the past 5 years, obligations for PIID NNJ15HK11B are fully concentrated in PSC AR12, with $875.29 million across 102 awards. This indicates a single dominant product/service category for the vehicle, with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within the same space R&D services category.

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 = 'NNJ15HK11B'
    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 167,743,884.74 167.74 million 24
2022 176,648,926.69 176.65 million 29
2023 189,291,332.85 189.29 million 17
2024 201,719,711.01 201.72 million 18
2025 139,884,621.88 139.88 million 14

Insight

Obligations on vehicle PIID NNJ15HK11B increased steadily from $167.74 million in FY 2021 to a peak of $201.72 million in FY 2024, then declined to $139.88 million in FY 2025. Award counts were highest in FY 2022 at 29, then fell to 17-18 in FYs 2023-2024 and 14 in FY 2025, indicating a lower volume of awards in the later years despite elevated obligations through FY 2024. Overall, the five-year pattern reflects a concentrated obligation profile with a late-period decline in both value and award 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.