Vehicle Number

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

Federal procurement profile for vehicle number associated with PIID NNJ16RN22C at Agency ID 8000 over the last 10 years.

This page summarizes award activity for vehicle number under PIID NNJ16RN22C for Agency ID 8000 across the last 10 years. The record shows 124 award actions with total obligations of $66.45 million and an average action value of $535,855.41.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligated totals are shown as both a readable amount and the exact figure of 66446070.34.

Agency ID
8000
PIID
NNJ16RN22C
Type
Vehicle
Total Obligated
66.45 million
66,446,070.34
Actions
124
Average Action Value
535,855.41

Overview

Over the last 10 years, vehicle number under PIID NNJ16RN22C shows 124 award actions recorded for Agency ID 8000. Total obligated dollars reached $66,446,070.34, with an average action value of $535,855.41. This profile provides a compact view of obligation volume and action frequency tied to this vehicle.

How to use this page

Use this page to review award activity associated with the vehicle number at a glance. The count of actions and obligation totals can help users compare this record against other procurement entries in the same agency or 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 = 'NNJ16RN22C'
    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 66,446,070.34 66.45 million 124

Insight

For PIID NNJ16RN22C over the 10-year window, obligations are fully concentrated within NASA, indicating a single-agency funding profile for this vehicle. NASA accounted for 66.45 million across 124 awards, with no other agencies represented in the provided data. This concentration suggests the vehicle has been used exclusively or almost exclusively for NASA-supported procurement activity in 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 = '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 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 = 'NNJ16RN22C'
    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
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 66,446,070.34 66.45 million 124

Insight

Over the 10-year window, all reported obligations for vehicle NNJ16RN22C under agency 8000 are concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This NAICS accounts for $66.45 million across 124 awards, indicating a highly focused contracting profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated use of the same service category over time rather than a broad mix of procurement types.

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 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
R499 SUPPORT- PROFESSIONAL: OTHER 66,446,070.34 66.45 million 124

Insight

Obligations under PIID NNJ16RN22C are fully concentrated in PSC R499, Support- Professional: Other, with $66.45 million across 124 awards over the 10-year window. This indicates a highly focused procurement pattern within the vehicle, with no evidence in the provided data of diversification across other PSCs. The average obligated value per award is roughly $535 thousand, suggesting repeated use of this service classification at a significant scale.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 2,521,516.72 2.52 million 8
2017 3,970,753.66 3.97 million 12
2018 4,583,580.95 4.58 million 16
2019 5,427,791.66 5.43 million 21
2020 17,888,754.30 17.89 million 20
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

Obligations for PIID NNJ16RN22C increased steadily from 2016 through 2019, rising from $2.52 million to $5.43 million, with award counts also increasing from 8 to 21. Funding then spiked in 2020 to $17.89 million, followed by sustained elevated obligations in 2021 and 2022 at about $15.29 million and $15.33 million, despite lower or flat award counts. In 2023, obligations dropped sharply to $1.43 million, indicating a material decline in annual funding concentration after the 2020–2022 peak period.

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.