Vehicle Number

Vehicle Number 1549 / 15F06723D0002056 Federal Contract Action Summary (Last 5 Years)

Analysis of vehicle number 15F06723D0002056 for Agency ID 1549 over the last 5 years, showing 5 award actions and $165.00 million in total obligations.

This page summarizes federal procurement activity for vehicle number 15F06723D0002056 within Agency ID 1549 during the last 5 years. The record includes 5 award actions with total obligated value of $165.00 million and an average action value of $33.00 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided readable and exact obligated amounts for the specified analysis window and vehicle record.

Agency ID
1549
PIID
15F06723D0002056
Type
Vehicle
Total Obligated
165.00 million
165,000,000.00
Actions
5
Average Action Value
33,000,000.00

Overview

Vehicle number 15F06723D0002056 is associated with 5 award actions in the last 5 years. Across those actions, total obligations equal $165.00 million, with an average action value of $33.00 million. The figures shown here are limited to the provided PIID and agency context.

How to use this page

Use this page to review the procurement footprint tied to vehicle number 15F06723D0002056 for Agency ID 1549. The count of award actions and obligated totals provide a basic view of activity level over the analysis window, without adding details not present in the source inputs.

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 = '1549' AND content__IDV__contractID__IDVID__PIID = '15F06723D0002056'
    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
1549 FEDERAL BUREAU OF INVESTIGATION 165,000,000.00 165.00 million 5

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated within the Federal Bureau of Investigation, which accounts for the entire reported total of $165.00 million across 5 awards. This indicates a single-agency funding pattern with no observed distribution to other agencies in the provided data. The award activity suggests repeated use of the vehicle by one customer rather than broad federal utilization.

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 = '1549' AND content__IDV__contractID__IDVID__PIID = '15F06723D0002056'
        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 = '1549' AND content__IDV__contractID__IDVID__PIID = '15F06723D0002056'
    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
541614 PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES 165,000,000.00 165.00 million 5

Insight

Obligations under PIID 15F06723D0002056 are fully concentrated in NAICS 541614, Process, Physical Distribution, and Logistics Consulting Services, with $165.0 million across 5 awards over the 5-year window. This indicates a narrow NAICS distribution and suggests the vehicle is used specifically for logistics consulting requirements rather than a diversified set of services.

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 = '1549' AND content__IDV__contractID__IDVID__PIID = '15F06723D0002056'
    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
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 165,000,000.00 165.00 million 5

Insight

Within the 5-year window for vehicle PIID 15F06723D0002056, obligations are fully concentrated in PSC R706, Support- Management: Logistics Support. This PSC accounts for $165.0 million across 5 awards, indicating a narrow and consistent spend pattern rather than a diversified mix of product or service classifications.

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 = '1549' AND content__IDV__contractID__IDVID__PIID = '15F06723D0002056'
    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
2023 165,000,000.00 165.00 million 2
2025 0.00 0.00 3

Insight

Over the 5-year window, obligations are highly concentrated in 2023, with $165.00 million across 2 awards. In 2025, there are 3 awards recorded but no obligated dollars, indicating activity without current funding value. This pattern suggests a one-year funding spike followed by award activity with no corresponding obligation in the provided 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.