Cobalt · Schema

Application

An enabled application within the Cobalt embedded integration platform.

AutomationEmbedded iPaaSIntegrations

Properties

Name Type Description
name string Application name.
slug string Application slug identifier.
icon string Application icon URL.
description string Application description.
auth_type string Authentication type (e.g., oauth2, api_key).
connected boolean Whether the application is connected for the linked account.
View JSON Schema on GitHub

JSON Schema

application.json Raw ↑
{
  "$id": "https://raw.githubusercontent.com/api-evangelist/cobalt/refs/heads/main/json-schema/application.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Application",
  "description": "An enabled application within the Cobalt embedded integration platform.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Application name."
    },
    "slug": {
      "type": "string",
      "description": "Application slug identifier."
    },
    "icon": {
      "type": "string",
      "description": "Application icon URL."
    },
    "description": {
      "type": "string",
      "description": "Application description."
    },
    "auth_type": {
      "type": "string",
      "description": "Authentication type (e.g., oauth2, api_key)."
    },
    "connected": {
      "type": "boolean",
      "description": "Whether the application is connected for the linked account."
    }
  }
}