{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SyncStatus", "title": "SyncStatus", "type": "object", "properties": { "model_name": { "type": "string" }, "model_id": { "type": "string" }, "last_sync_start": { "type": "string", "format": "date-time" }, "next_sync_start": { "type": "string", "format": "date-time" }, "last_sync_result": { "$ref": "#/components/schemas/LastSyncResultEnum" }, "last_sync_finished": { "type": "string", "format": "date-time" }, "status": { "$ref": "#/components/schemas/StatusFd5Enum" }, "is_initial_sync": { "type": "boolean" }, "selective_sync_configurations_usage": { "$ref": "#/components/schemas/SelectiveSyncConfigurationsUsageEnum" } }, "required": [ "model_name", "model_id", "status", "is_initial_sync" ], "description": "# The SyncStatus Object\n### Description\nThe `SyncStatus` object is used to represent the syncing state of an account\n\n### Usage Example\nView the `SyncStatus` for an account to see how recently its models were synced." }