Prismatic · JSON Structure

Component

JSON Structure representation of a Prismatic Component (connector) — a reusable bundle of actions, triggers, data sources, and connections that integrations call. Prismatic ships hundreds of public components and customers can author private components with the Spectral SDK.

Type: object Properties: 0 Required: 3
Embedded iPaaSIntegrationsWorkflowsConnectorsAI AgentsMCPCode-NativeLow-Code

Component is a JSON Structure definition published by Prismatic. It conforms to the https://json-structure.org/draft/2025-01/schema meta-schema.

Meta-schema: https://json-structure.org/draft/2025-01/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025-01/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/prismatic/refs/heads/main/json-structure/component.json",
  "title": "Prismatic Component Structure",
  "description": "JSON Structure representation of a Prismatic Component (connector) — a reusable bundle of actions, triggers, data sources, and connections that integrations call. Prismatic ships hundreds of public components and customers can author private components with the Spectral SDK.",
  "type": "object",
  "name": "Component",
  "required": ["id", "key", "label"],
  "fields": {
    "id": { "type": "string" },
    "key": { "type": "string", "description": "Machine identifier (e.g. slack, http, salesforce)." },
    "label": { "type": "string" },
    "description": { "type": "string" },
    "category": { "type": "string" },
    "isPublic": { "type": "boolean", "description": "True for components published by Prismatic; false for org-owned components." },
    "authorizationRequired": { "type": "boolean" },
    "iconUrl": { "type": "string", "format": "uri" },
    "versionNumber": { "type": "integer" },
    "actions": { "type": "array", "description": "Action descriptors callable from flows." },
    "triggers": { "type": "array", "description": "Trigger descriptors that start flows." },
    "dataSources": { "type": "array", "description": "Data source descriptors used in config wizards." },
    "connections": { "type": "array", "description": "Connection types (OAuth, API key, basic, etc.)." },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}