Apifuse · Schema

Integration

An embedded integration available in the Apifuse marketplace.

Embedded IntegrationsIntegration PlatformIntegrationsiPaaSMarketplaceSaaSWorkflow Automation

Properties

Name Type Description
id string Unique identifier of the integration.
name string Display name of the integration.
category string Category of the integration.
status string Current status of the integration.
description string Description of what the integration does.
View JSON Schema on GitHub

JSON Schema

apifuse-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apifuse/refs/heads/main/json-schema/apifuse-integration-schema.json",
  "title": "Integration",
  "description": "An embedded integration available in the Apifuse marketplace.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the integration.",
      "example": "int-001"
    },
    "name": {
      "type": "string",
      "description": "Display name of the integration.",
      "example": "Salesforce"
    },
    "category": {
      "type": "string",
      "description": "Category of the integration.",
      "example": "CRM"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "beta"
      ],
      "description": "Current status of the integration."
    },
    "description": {
      "type": "string",
      "description": "Description of what the integration does."
    }
  }
}