Skip to content

Commit

Permalink
update schema for activities and deals datetime fields (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyn4 authored Oct 1, 2024
1 parent b36b558 commit ac385c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tap_pipedrive/schemas/recents/dynamic_typing/activities.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"type": ["null", "integer"]
},
"due_date": {
"type": ["null", "string"]
"type": ["null", "string"],
"format": "date-time"
},
"due_time": {
"type": ["null", "string"]
Expand Down
6 changes: 4 additions & 2 deletions tap_pipedrive/schemas/recents/dynamic_typing/deals.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@
"type": ["integer", "null"]
},
"last_activity_date": {
"type": ["null", "string"]
"type": ["null", "string"],
"format": "date-time"
},
"lost_reason": {
"type": ["null", "string"]
Expand Down Expand Up @@ -128,7 +129,8 @@
"type": ["null", "integer"]
},
"expected_close_date": {
"type": ["null", "string"]
"type": ["null", "string"],
"format": "date-time"
},
"last_incoming_mail_time": {
"type": ["null", "string"],
Expand Down

0 comments on commit ac385c2

Please sign in to comment.