I'm building a parquet converter in python that takes in a json with the fields and the dtypes of those fields. How do I classify a field that has a data type as date in a json?
{
  "contact_firstname": "string",
  "contact_suffix": "string",
  "contact_middle_name": "string",
  "contact_email_address": "string",
  "contact_date_of_birth": "datetime",
  "contact_address_line_2": "string",
  "contact_address_line_3": "string"
}
 
     
    