Prismatic · JSON Structure

Integration

JSON Structure representation of a Prismatic Integration — a workflow definition that can be deployed as instances to customers. Integrations can be built in the low-code designer or written as code-native (CNI) projects.

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

Integration 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/integration.json",
  "title": "Prismatic Integration Structure",
  "description": "JSON Structure representation of a Prismatic Integration — a workflow definition that can be deployed as instances to customers. Integrations can be built in the low-code designer or written as code-native (CNI) projects.",
  "type": "object",
  "name": "Integration",
  "required": ["id", "name"],
  "fields": {
    "id": { "type": "string", "description": "Globally unique integration ID." },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "category": { "type": "string" },
    "overview": { "type": "string", "description": "Long-form marketplace description." },
    "labels": { "type": "array", "items": { "type": "string" } },
    "versionNumber": { "type": "integer" },
    "versionIsAvailable": { "type": "boolean" },
    "isCodeNative": { "type": "boolean", "description": "True when the integration is authored with the Spectral TypeScript SDK (CNI)." },
    "marketplaceConfiguration": { "type": "string", "enum": ["AVAILABLE", "HIDDEN"] },
    "flows": { "type": "array", "ref": "flow.json" },
    "instances": { "type": "array", "ref": "instance.json" },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  }
}