1
0
mirror of synced 2026-01-26 13:01:49 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/schemas/users.json
Harshith Mullapudi 92c0530289 Harshith/test pr 12806 (#13082)
* 🐛 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>
2022-05-23 16:31:09 +05:30

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"]
}
}
}