Fax No
Stores the telephone fax number for the vendor location associated with the award record. It is a contact attribute for the specific site, not a contract action amount, identifier, or descriptive code.
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
- site-level record matching
- data quality and deduplication checks
Common Mistakes
- using it as a vendor identifier
- casting it to numeric and dropping formatting or leading zeros
Query Guidance
Select and filter it as a text field. Use normalization functions only if needed for cleanup, and compare it alongside vendor name, address, and identifiers; for example, WHERE faxNo IS NOT NULL or GROUP BY faxNo after standardizing punctuation if deduplication is required.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__faxNo AS fax_no
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__faxNo IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__faxNo AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__faxNo 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.