* 🐛 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>
78 lines
1.6 KiB
JSON
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"]
|
|
}
|
|
}
|
|
}
|