Cobalt · Schema

Datastore

A datastore within the Cobalt embedded integration platform for managing structured records.

AutomationEmbedded iPaaSIntegrations

Properties

Name Type Description
_id string Datastore ID.
name string Datastore name.
slug string Datastore slug.
config_id string Associated configuration ID.
View JSON Schema on GitHub

JSON Schema

datastore.json Raw ↑
{
  "$id": "https://raw.githubusercontent.com/api-evangelist/cobalt/refs/heads/main/json-schema/datastore.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Datastore",
  "description": "A datastore within the Cobalt embedded integration platform for managing structured records.",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Datastore ID."
    },
    "name": {
      "type": "string",
      "description": "Datastore name."
    },
    "slug": {
      "type": "string",
      "description": "Datastore slug."
    },
    "config_id": {
      "type": "string",
      "description": "Associated configuration ID."
    }
  }
}