Boltic · Schema

Row

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
id string
fields object Key-value pairs of column names to values
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

boltic-row-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Row",
  "title": "Row",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "fields": {
      "type": "object",
      "additionalProperties": true,
      "description": "Key-value pairs of column names to values"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}