Merge · Schema

SyncStatus

# The SyncStatus Object ### Description The `SyncStatus` object is used to represent the syncing state of an account ### Usage Example View the `SyncStatus` for an account to see how recently its models were synced.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
model_name string
model_id string
last_sync_start string
next_sync_start string
last_sync_result object
last_sync_finished string
status object
is_initial_sync boolean
selective_sync_configurations_usage object
View JSON Schema on GitHub

JSON Schema

merge-syncstatus-schema.json Raw ↑
{
  "$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."
}