Vehicle Number

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

Procurement analysis for vehicle number under agency 8000, PIID NNK10LB02B, covering the last 5 years of award activity.

This page summarizes federal procurement activity for vehicle number associated with agency 8000 and PIID NNK10LB02B over the last 5 years. The record shows 173 award actions with total obligated dollars of 1.10 billion and an average action value of 6,343,876.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and represent obligated dollars as reported for this vehicle record.

Agency ID
8000
PIID
NNK10LB02B
Type
Vehicle
Total Obligated
1.10 billion
1,097,490,548.00
Actions
173
Average Action Value
6,343,876.00

Overview

Over the last 5 years, vehicle number under agency 8000 and PIID NNK10LB02B accumulated 173 award actions. Total obligated amount reached 1.10 billion, with an average action value of 6,343,876. This page is intended to support review of the procurement record at the vehicle level.

How to use this page

Use this page to identify the scale and cadence of award activity associated with this vehicle record. The counts and obligated totals provide a compact view of transaction volume, while the average action value gives a basic measure of award size across the analysis window.

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 = 'NNK10LB02B'
    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 1,097,490,548.00 1.10 billion 173

Insight

For PIID NNK10LB02B over the 5-year window, obligated dollars are entirely concentrated in a single top agency: the National Aeronautics and Space Administration. NASA accounts for 1.10 billion in total obligated value across 173 awards, indicating a strong concentration of activity within one agency rather than a broadly distributed award base.

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 = 'NNK10LB02B'
        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 = 'NNK10LB02B'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 1,097,490,548.00 1.10 billion 173

Insight

Over the 5-year window, obligations for PIID NNK10LB02B are concentrated entirely in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $1.10 billion across 173 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award activity suggests repeated procurement within a single industrial base rather than broad distribution across multiple sectors.

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 = 'NNK10LB02B'
    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
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH 1,097,490,548.00 1.10 billion 173

Insight

Over the 5-year window, obligations for vehicle PIID NNK10LB02B are fully concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch. This PSC accounts for $1.10 billion across 173 awards, indicating a highly focused procurement profile with no evidence of broader PSC diversification 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 = 'NNK10LB02B'
    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 180,517,150.00 180.52 million 38
2022 272,616,281.00 272.62 million 38
2023 211,781,265.00 211.78 million 45
2024 186,535,091.00 186.54 million 25
2025 246,040,761.00 246.04 million 27

Insight

Obligations for PIID NNK10LB02B under agency 8000 were concentrated in a relatively narrow range over the five-year window, spanning from $180.52 million to $272.62 million annually. Funding peaked in 2022 at $272.62 million, then declined in 2023 and 2024 before rebounding to $246.04 million in 2025. Award volume was more stable than dollars in the first three years, with 38 awards in both 2021 and 2022 and 45 in 2023, then falling to 25 in 2024 and 27 in 2025.

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.