1
0
mirror of synced 2026-01-07 18:06:03 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/schemas/files.json

102 lines
2.0 KiB
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"user_id": {
"type": ["null", "integer"]
},
"log_id": {
"type": ["null", "integer"]
},
"add_time": {
"type": ["null", "string"]
},
"update_time": {
"type": ["null", "string"],
"format": "date-time",
"airbyte_type": "timestamp_without_timezone"
},
"file_name": {
"type": ["null", "string"]
},
"file_size": {
"type": ["null", "integer"]
},
"active_flag": {
"type": ["null", "boolean"]
},
"inline_flag": {
"type": ["null", "boolean"]
},
"remote_location": {
"type": ["null", "string"]
},
"remote_id": {
"type": ["null", "string"]
},
"s3_bucket": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"deal_id": {
"type": ["null", "integer"]
},
"lead_id": {
"type": ["null", "integer"]
},
"person_id": {
"type": ["null", "integer"]
},
"org_id": {
"type": ["null", "integer"]
},
"product_id": {
"type": ["null", "integer"]
},
"activity_id": {
"type": ["null", "integer"]
},
"deal_name": {
"type": ["null", "string"]
},
"lead_name": {
"type": ["null", "string"]
},
"person_name": {
"type": ["null", "string"]
},
"people_name": {
"type": ["null", "string"]
},
"org_name": {
"type": ["null", "string"]
},
"product_name": {
"type": ["null", "string"]
},
"mail_message_id": {
"type": ["null", "integer"]
},
"mail_template_id": {
"type": ["null", "integer"]
},
"cid": {
"type": ["null", "integer"]
},
"file_type": {
"type": ["null", "string"]
}
}
}