Renewal Date
Date on which the vendor's Central Contractor Registration (CCR) registration is due to be renewed. It is stored as a string representing a date-time value in the vendor site registration details.
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
- Checking vendor registration currency at award time
- Filtering awards by vendors with expiring or renewed registrations
- Joining vendor profile details across IDV and award records
Common Mistakes
- Assuming the field proves active registration without checking status dates or related registration fields
- Comparing the raw string lexicographically instead of casting to a date or timestamp
Query Guidance
Parse the string to a date/timestamp in SQL before filtering or joining on time periods. Use date comparisons such as renewal_date >= award_date only after confirming the field format, and pair it with registration status or other CCR/SAM fields when analyzing eligibility or compliance.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate AS renewal_date
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__ccrRegistrationDetails__renewalDate 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.