1
0
mirror of synced 2026-01-02 03:02:26 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/schemas/activity_fields.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

78 lines
1.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"order_nr": {
"type": ["null", "integer"]
},
"field_type": {
"type": ["null", "string"]
},
"add_time": {
"type": ["null", "string"]
},
"update_time": {
"type": ["null", "string"]
},
"last_updated_by_user_id": {
"type": ["null", "integer"]
},
"active_flag": {
"type": ["null", "boolean"]
},
"edit_flag": {
"type": ["null", "boolean"]
},
"index_visible_flag": {
"type": ["null", "boolean"]
},
"details_visible_flag": {
"type": ["null", "boolean"]
},
"add_visible_flag": {
"type": ["null", "boolean"]
},
"important_flag": {
"type": ["null", "boolean"]
},
"bulk_edit_allowed": {
"type": ["null", "boolean"]
},
"searchable_flag": {
"type": ["null", "boolean"]
},
"filtering_allowed": {
"type": ["null", "boolean"]
},
"sortable_flag": {
"type": ["null", "boolean"]
},
"options": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer", "string", "boolean"]
},
"label": {
"type": ["null", "string"]
}
}
}
},
"mandatory_flag": {
"type": ["null", "boolean"]
}
}
}