1
0
mirror of synced 2026-01-10 09:04:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/schemas/deal_fields.json
Roman Yermilov [GL] 9847aa4ed5 Source Pipedrive: fix expected records (#26892)
* Source Pipedrive: fix expected records

* Source Pipedrive: update schema, bump version
2023-06-02 21:57:29 +04:00

83 lines
1.7 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"],
"format": "date-time",
"airbyte_type": "timestamp_without_timezone"
},
"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", "string", "integer"]
},
"label": {
"type": ["null", "string"]
}
}
}
},
"mandatory_flag": {
"type": ["null", "string", "boolean", "object"]
},
"pipeline_ids": {
"type": ["null", "array"]
}
}
}