1
0
mirror of synced 2026-01-19 09:07:23 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/source_intercom/schemas/segments.json
Christian Gagnon 65b42c862a 🐛 Source Intercom: Fix "updated_at" data type (#6087)
* Intercom: Fix "updated_at" data type

* Add start date formatting to timestamp

* Update updated_at field for all schemas and integration tests

* Bumped version

Co-authored-by: lazebnyi <serglazebny@gmail.com>
2021-09-20 15:29:50 +03:00

28 lines
477 B
JSON
Executable File

{
"type": "object",
"additionalProperties": false,
"properties": {
"created_at": {
"type": ["null", "integer"]
},
"count": {
"type": ["null", "integer"]
},
"id": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"type": {
"type": ["null", "string"]
},
"person_type": {
"type": ["null", "string"]
},
"updated_at": {
"type": ["null", "integer"]
}
}
}