Registration Date
The date the vendor’s registration was recorded in CCR/SAM within the vendor site details portion of the award record. It is stored as a string timestamp and represents when the contractor registration became effective in the FPDS snapshot.
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
- Check whether vendor registration preceded award date
- Measure time from registration to first award
- Group awards by registration vintage
Common Mistakes
- Assuming the string is already normalized to a date type
- Interpreting it as the vendor’s business incorporation date
Query Guidance
Cast or parse the string to a date/datetime in SQL, then compare it to award date fields for eligibility or timing analysis. If the source contains timestamps, truncate to date only when the time component is not analytically relevant.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__registrationDate AS registration_date
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__registrationDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__registrationDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__ccrRegistrationDetails__registrationDate 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.