Entity Data Source
This field identifies the data source used to populate the vendor entity record in the IDV vendor site details segment. It is typically a coded or abbreviated value, such as a commercial reference source name, rather than a free-text description of 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 vendor records by source system
- Group awards by vendor entity origin
- Validate vendor matching and deduplication workflows
Common Mistakes
- Interpreting the value as the vendor's business name or address
- Comparing records from different source codes without accounting for source-specific coverage or normalization
Query Guidance
Use this field in WHERE clauses, GROUP BY, or CASE logic when you need to segment vendor entities by source. Join or compare it with any paired description field or reference table only after confirming the code set, and avoid using it as a standalone proxy for vendor identity.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS entity_data_source
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__entityDataSource IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__entityDataSource AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.