Vehicle Number

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

Procurement analysis page for vehicle number NNJ16JA52B under agency ID 8000, covering the last 10 years of award activity.

This page summarizes federal procurement activity tied to vehicle number NNJ16JA52B for agency ID 8000 over the last 10 years. The record shows 289 award actions with total obligations of $358.03 million and an average action value of $1,238,868.70.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from rounded displays because exact obligations are retained in source data.

Agency ID
8000
PIID
NNJ16JA52B
Type
Vehicle
Total Obligated
358.03 million
358,033,053.87
Actions
289
Average Action Value
1,238,868.70

Overview

Over the last 10 years, vehicle number NNJ16JA52B is associated with 289 award actions and $358,033,053.87 in total obligated amounts. The average action value across the record is $1,238,868.70. This page is intended for reviewing activity level and obligated totals tied to this specific vehicle record.

How to use this page

Use this page to quickly assess the scope of award activity connected to vehicle number NNJ16JA52B. The combination of exact obligations, award count, and average action value provides a concise view of procurement volume over 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 = 'NNJ16JA52B'
    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 358,033,053.87 358.03 million 289

Insight

For PIID NNJ16JA52B over the 10-year window, obligations are fully concentrated in the National Aeronautics and Space Administration. NASA accounts for $358.03 million across 289 awards, indicating a highly concentrated award pattern under this vehicle. No other agencies are represented in the provided data, so the distribution is singular rather than diversified.

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 = 'NNJ16JA52B'
        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 = 'NNJ16JA52B'
    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
518210 DATA PROCESSING, HOSTING, AND RELATED SERVICES 325,467,380.78 325.47 million 254
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES 32,565,673.09 32.57 million 35

Insight

Obligations under PIID NNJ16JA52B are concentrated in NAICS 518210, with 254 awards totaling $325.47 million over the 10-year window. A smaller set of awards is also coded to the same NAICS family as “Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services,” totaling $32.57 million across 35 awards. Together, these entries indicate sustained, high-volume spending in data processing and hosting-related services, with the bulk of obligations captured under the broader 518210 designation.

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 = 'NNJ16JA52B'
    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
D399 IT AND TELECOM- OTHER IT AND TELECOMMUNICATIONS 358,033,053.87 358.03 million 289

Insight

Over the 10-year window, obligations under PIID NNJ16JA52B are fully concentrated in PSC D399, IT and Telecom- Other IT and Telecommunications. This PSC accounts for $358.03 million across 289 awards, indicating a sustained and highly focused spending pattern rather than a broad mix of product or service categories.

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 = 'NNJ16JA52B'
    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 30,680,292.81 30.68 million 32
2017 41,457,132.84 41.46 million 53
2018 44,245,482.26 44.25 million 34
2019 48,103,223.97 48.10 million 40
2020 56,147,325.65 56.15 million 37
2021 58,254,028.11 58.25 million 33
2022 55,436,079.66 55.44 million 31
2023 23,701,642.17 23.70 million 28
2024 7,846.40 7.85 thousand 1

Insight

For PIID NNJ16JA52B, obligations were relatively stable and elevated from 2017 through 2022, ranging from $41.46 million to $58.25 million annually, with award counts generally between 31 and 53. The peak obligated amount occurred in 2021 at $58.25 million, followed by a modest decline in 2022 to $55.44 million. Activity then dropped sharply in 2023 to $23.70 million and was minimal in 2024 at $7.85 thousand across one award, indicating a pronounced late-period contraction in both obligation volume and award frequency.

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.