{ "$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." } } }