Vehicle Number

Vehicle Number 7015 / HSFLAR17D00002 Federal Contract Action Summary (Last Year)

Analysis of vehicle number for agency 7015 under PIID HSFLAR17D00002 shows 11 award actions in the last full year and $4,504,222.01 obligated.

This page summarizes procurement activity for vehicle number associated with agency 7015 and PIID HSFLAR17D00002. In the last full year, the vehicle recorded 11 award actions with total obligations of $4.50 million.

Generated at 03/21/2026

Analysis period: Last full year

Dollar figures are shown as provided, with readable and exact values aligned to the last full year analysis window.

Agency ID
7015
PIID
HSFLAR17D00002
Type
Vehicle
Total Obligated
4.50 million
4,504,222.01
Actions
11
Average Action Value
409,474.73

Overview

The vehicle number record for agency 7015 and PIID HSFLAR17D00002 shows sustained procurement activity across 11 award actions during the last full year. Total obligations reached $4,504,222.01, with an average action value of $409,474.73. This view is intended to support review of obligation volume and action frequency for the identified vehicle. It presents the available summary measures without adding contract details not included in the source inputs.

How to use this page

Use this page to quickly assess how much funding moved through the vehicle number over the last full year and how that total was distributed across actions. The average action value provides a simple reference point for comparing individual awards or changes over time. For deeper analysis, pair this summary with award-level records and other FPDS filters tied to agency 7015 and PIID HSFLAR17D00002. This helps distinguish overall vehicle activity from specific obligation events.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLAR17D00002'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
7015 FEDERAL LAW ENFORCEMENT TRAINING CENTER 4,504,222.01 4.50 million 11

Insight

Over the 1-year window, obligations under PIID HSFLAR17D00002 are fully concentrated within the Federal Law Enforcement Training Center (agency ID 7015), accounting for $4.50 million across 11 awards. This indicates a single-agency funding profile with no distribution across other agencies in the provided data. The award count suggests repeated obligation activity rather than a one-time transaction.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLAR17D00002'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLAR17D00002'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
561210 FACILITIES SUPPORT SERVICES 4,504,222.01 4.50 million 11

Insight

Obligations for this vehicle are concentrated entirely in NAICS 561210, Facilities Support Services, which accounts for the full $4.50 million in reported obligations across 11 awards over the 1-year window. This indicates a narrow service focus and no observed NAICS diversification within the provided data. The award pattern suggests repeated use of the same services under this vehicle rather than broader mission coverage.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLAR17D00002'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
S299 HOUSEKEEPING- OTHER 4,504,222.01 4.50 million 11

Insight

Within the 1-year window for vehicle HSFLAR17D00002 under agency 7015, obligations are fully concentrated in PSC S299, Housekeeping- Other. This PSC accounts for $4.50 million across 11 awards, indicating a narrow service profile with spending distributed across multiple actions rather than a single large obligation.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLAR17D00002'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 4,504,222.01 4.50 million 11

Insight

For PIID HSFLAR17D00002 over the 1-year window, FY2025 obligations totaled $4.50 million across 11 awards. The activity is concentrated in a single reporting year, with an average obligation of about $409 thousand per award, indicating moderate dispersion across multiple obligations rather than reliance on a single large award.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.