This page summarizes available FPDS procurement activity for the National Technical Information Service during the last full year. The provided dataset shows 0 award actions and does not include obligational or vendor detail for this period.
Federal Agency
NATIONAL TECHNICAL INFORMATION SERVICE Federal Contract Obligations (Last Year)
Federal procurement summary for the National Technical Information Service (Agency ID 1342) covering the last full year, with no recorded award actions in the provided data.
Because the supplied inputs contain no award, vendor, NAICS, or annual trend rows, the page reflects only the absence of recorded activity in the provided data.
About NATIONAL TECHNICAL INFORMATION SERVICE federal contract activity
During the last full year, the National Technical Information Service recorded no FPDS awards in the supplied dataset, with an award count of 0 and no obligated dollar value reported. As a result, there is no measurable contract activity to summarize for this analysis period.
Vendor concentration and leading contractors
No top vendors are identifiable because the dataset contains no awards for the period reviewed. With no recorded obligations or awards, vendor concentration, spend share, and supplier relationships cannot be assessed.
Industry profile based on NAICS activity
No NAICS categories are reported for the period because there were no awards in the dataset. Without obligating actions, industry mix and procurement concentration by NAICS cannot be determined.
Annual contract trend over the analysis window
The annual trend is flat at zero for the entire last full year based on the provided data. With no awards recorded, there are no monthly or quarterly movements to evaluate.
How to interpret this page
This summary is based solely on the provided FPDS Query snapshot for the National Technical Information Service, Agency ID 1342, covering the last full year. Metrics are limited to the supplied fields; where values were null or no records existed, no additional inference was made.
Top Vendors
SELECT
vendor_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable vendor concentration was available for this analysis window.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|
Insight
No notable NAICS concentration was available for this analysis window.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__purchaserInformation__contractingOfficeAgencyID = '1342'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|
Insight
No annual trend data was available for this analysis window.
Use FPDS Query for deeper analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.