Activepieces · JSON Structure

Activepieces Template Structure

A flow template for reuse

Type: object Properties: 5
AutomationNo-CodeOpen SourceWorkflowAI AgentsMCP

Template is a JSON Structure definition published by Activepieces, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id created name description tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-structure/activepieces-template-structure.json",
  "name": "Template",
  "description": "A flow template for reuse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Template ID",
      "example": "template-abc123"
    },
    "created": {
      "type": "datetime"
    },
    "name": {
      "type": "string",
      "description": "Template name",
      "example": "Lead Notification Template"
    },
    "description": {
      "type": "string",
      "description": "Template description"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Template tags"
    }
  }
}