Entity Data Source
Human-readable source identifier for the vendor’s entity record in the source system used by FPDS, such as D&B. It indicates where the vendor location/entity information originated rather than describing the vendor itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter awards by entity source for vendor matching analysis
- Group records to assess data quality by source system
- Validate whether vendor location data came from D&B or another source
Common Mistakes
- Using it as a unique vendor identifier
- Assuming different source labels represent the same entity schema
Query Guidance
Use in WHERE or GROUP BY clauses to segment records by source, e.g., WHERE content__award__vendor__vendorSiteDetails__vendorLocation__entityDataSource = 'D&B'. If source values are inconsistent, normalize with TRIM/UPPER and inspect distinct values before aggregating.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS entity_data_source
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.