* 🐛 Source(Pipedrive): remove date-time format from schemas Pipedrive doesn't work with ISO format of date times. Example of format by Pipedrive: 2020-04-15 12:58:48 * chore: update changelog * chore: updated the source-pipedrive version * chore: update seed file Co-authored-by: Joël Luijmes <me@joell.dev>
67 lines
1.3 KiB
JSON
67 lines
1.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"default_currency": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"locale": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"lang": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"email": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"phone": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"activated": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"last_login": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"modified": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"signup_flow_variation": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"has_created_company": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"is_admin": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"active_flag": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"timezone_name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"timezone_offset": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"role_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"icon_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"is_you": {
|
|
"type": ["null", "boolean"]
|
|
}
|
|
}
|
|
}
|