Xceptor · Schema

DataSource

A configured connection to an external data system used by the Xceptor platform for ingesting or exporting data.

API IntegrationData AutomationData ExtractionDocument ProcessingETLFinancial DataFinancial ServicesIntelligent Document ProcessingReconciliationsTrade Operations

Properties

Name Type Description
id string The unique identifier of the data source
name string The display name of the data source
type string The type of data source connection
status string The current connection status of the data source
created_at string The date and time the data source was configured
updated_at string The date and time the data source was last updated
last_used_at string The date and time the data source was last used
View JSON Schema on GitHub

JSON Schema

xceptor-datasource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSource",
  "title": "DataSource",
  "type": "object",
  "description": "A configured connection to an external data system used by the Xceptor platform for ingesting or exporting data.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier of the data source"
    },
    "name": {
      "type": "string",
      "description": "The display name of the data source"
    },
    "type": {
      "type": "string",
      "description": "The type of data source connection",
      "enum": [
        "database",
        "cloud_storage",
        "sftp",
        "api",
        "message_queue",
        "email"
      ]
    },
    "status": {
      "type": "string",
      "description": "The current connection status of the data source",
      "enum": [
        "connected",
        "disconnected",
        "error"
      ]
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the data source was configured"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the data source was last updated"
    },
    "last_used_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the data source was last used"
    }
  }
}