Phone No
Vendor location phone number recorded in the award’s vendor site details. It is a string attribute that stores the contact number for the specific vendor location associated with the transaction.
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
- Vendor contact validation
- Duplicate or entity-resolution checks across vendor site records
- Filtering awards by vendor site contact details
Common Mistakes
- Using the phone number as a unique vendor identifier
- Comparing raw formatted strings without normalization
Query Guidance
Use string cleaning in SQL to standardize phone values before matching or grouping, for example by removing non-numeric characters. Filter nulls and blank values explicitly, and avoid joining on this field unless it is paired with stronger vendor identifiers and location keys.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo AS phone_no
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__phoneNo 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.