Vehicle Number

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

Procurement summary for vehicle number under agency ID 8000 and PIID NNJ16RN22C over the last 5 years.

This page summarizes Federal award activity for vehicle number associated with agency ID 8000 and PIID NNJ16RN22C. The analysis window covers the last 5 years and includes 47 award actions totaling $32.05 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar amounts are shown as reported, with total obligated exact value of 32053673.05 and average action value of 681993.04.

Agency ID
8000
PIID
NNJ16RN22C
Type
Vehicle
Total Obligated
32.05 million
32,053,673.05
Actions
47
Average Action Value
681,993.04

Overview

The record for vehicle number under PIID NNJ16RN22C shows 47 award actions in the last 5 years. Total obligated dollars equal 32053673.05, or 32.05 million when rounded for readability, with an average action value of 681993.04. This view is limited to the provided award summary and does not add contract details beyond those inputs.

How to use this page

Use this page to review the scale and frequency of award activity tied to vehicle number for agency ID 8000. The figures help compare total obligations, action count, and average action value within the stated 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 = 'NNJ16RN22C'
    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 32,053,673.05 32.05 million 47

Insight

Within the 5-year window for vehicle PIID NNJ16RN22C, obligations are fully concentrated in a single agency: NASA, which accounts for $32.05 million across 47 awards. This indicates a highly concentrated award distribution with no cross-agency spread in the provided data. The volume of awards suggests repeated use of the vehicle within the same agency rather than broad interagency adoption.

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 = 'NNJ16RN22C'
        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 = 'NNJ16RN22C'
    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
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 32,053,673.05 32.05 million 47

Insight

Over the 5-year window, all reported obligations for vehicle NNJ16RN22C under Agency ID 8000 are concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This NAICS accounts for $32.05 million across 47 awards, indicating a consistent contracting pattern within a single service category. No other NAICS codes are reflected in the provided rows, so diversification across NAICS is not evident in this extract.

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 = 'NNJ16RN22C'
    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
R499 SUPPORT- PROFESSIONAL: OTHER 32,053,673.05 32.05 million 47

Insight

Obligations for PIID NNJ16RN22C over the 5-year window are fully concentrated in PSC R499, Support- Professional: Other, with $32.05 million across 47 awards. This indicates a narrow PSC distribution and suggests the vehicle has been used consistently for professional support services rather than a mix of product or other service categories. The concentration in a single PSC limits diversification and may reflect a stable, specialized requirement profile.

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 = 'NNJ16RN22C'
    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 15,292,327.87 15.29 million 21
2022 15,333,293.90 15.33 million 16
2023 1,428,051.28 1.43 million 10

Insight

For PIID NNJ16RN22C under agency 8000, obligations were highly concentrated in 2021 and 2022 at roughly $15.29 million and $15.33 million, respectively, with award counts of 21 and 16. In 2023, obligated value dropped sharply to $1.43 million and award count fell to 10, indicating a pronounced decline in both funding level and activity. Over the 5-year window, the pattern suggests a short period of sustained high obligation followed by a substantial reduction.

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.