Vehicle Number

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

Federal procurement profile for vehicle number under PIID NNK10LB00B, showing award activity for Agency ID 8000 over the last 5 years.

This page summarizes award activity for vehicle number associated with PIID NNK10LB00B across the last 5 years. The record shows 67 award actions and total obligations of $107.38 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided readable obligation amount of 107,380,372 and average action value of 1,602,692.12.

Agency ID
8000
PIID
NNK10LB00B
Type
Vehicle
Total Obligated
107.38 million
107,380,372.00
Actions
67
Average Action Value
1,602,692.12

Overview

The award record for vehicle number under PIID NNK10LB00B covers 67 actions in the last 5 years, with total obligations of $107,380,372. The average action value is $1,602,692.12, indicating substantial activity across the period. This page is limited to the data provided for Agency ID 8000.

How to use this page

Use this page to review obligation totals and action volume tied to vehicle number within the specified analysis window. It supports quick comparison of award intensity, average action size, and overall procurement activity for PIID NNK10LB00B.

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 = 'NNK10LB00B'
    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 107,380,372.00 107.38 million 67

Insight

For PIID NNK10LB00B over the last 5 years, obligated dollars are fully concentrated in a single top agency: the National Aeronautics and Space Administration. NASA accounts for $107.38 million across 67 awards, indicating all reported activity in this section is tied to one agency rather than distributed across multiple buyers. This pattern suggests a highly concentrated procurement relationship within the vehicle.

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 = 'NNK10LB00B'
        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 = 'NNK10LB00B'
    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 107,380,372.00 107.38 million 67

Insight

Over the 5-year window, obligations for PIID NNK10LB00B are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $107.38 million across 67 awards, indicating a clear and sustained alignment with space/vehicle manufacturing work. No other NAICS is reflected in the provided rows, so the observed activity is not diversified across industry codes in this view.

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 = 'NNK10LB00B'
    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 107,380,372.00 107.38 million 67

Insight

Over the 5-year window, vehicle PIID NNK10LB00B is fully concentrated in PSC V126, with $107.38 million obligated across 67 awards. This indicates a highly focused procurement profile tied to transportation/travel/relocation, specifically space transportation/launch. The award volume suggests repeated activity within a single PSC rather than a diversified requirement mix.

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 = 'NNK10LB00B'
    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 81,481,890.00 81.48 million 37
2022 20,813,856.00 20.81 million 19
2023 5,084,626.00 5.08 million 7
2024 0.00 0.00 1
2025 0.00 0.00 3

Insight

Obligations on PIID NNK10LB00B are heavily front-loaded in the 5-year window, with $81.48 million in 2021, then falling sharply to $20.81 million in 2022 and $5.08 million in 2023. Award activity also declined from 37 awards in 2021 to 19 in 2022 and 7 in 2023, indicating a contraction in both value and volume. In 2024 and 2025, award counts continue at low levels, but obligated amounts remain at $0.00, suggesting minimal or non-obligating activity in those years.

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.