* 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>
28 lines
477 B
JSON
Executable File
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"]
|
|
}
|
|
}
|
|
}
|