Matilde Catalogue

Source: Local portfolio preview — database Catalogue omitted Snapshot generated:
Read-only snapshot — not live deployment verification
8
Total Definitions
0
Database Definitions
8
Portfolio Definitions
Showing 8 of 8 definitions
← Back to service list

content-publishing

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Publish a title/body announcement to multiple webhook targets in one run.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
contentPublishing
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
title string Required Not specified
body string Required Not specified
targets array Required Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "targets": {
      "type": "array",
      "minItems": 1,
      "maxItems": 10,
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "webhookUrl": {
            "type": "string",
            "format": "uri",
            "pattern": "^https://"
          }
        },
        "required": [
          "name",
          "webhookUrl"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "title",
    "body",
    "targets"
  ],
  "additionalProperties": false
}
← Back to service list

creative-proofing

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Route a creative asset through client approval before delivery.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
creativeProofing
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
assetTitle string Required Not specified
assetUrl string Required Not specified
clientEmail string Required Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "assetTitle": {
      "type": "string"
    },
    "assetUrl": {
      "type": "string",
      "format": "uri"
    },
    "clientEmail": {
      "type": "string",
      "format": "email"
    }
  },
  "required": [
    "assetTitle",
    "assetUrl",
    "clientEmail"
  ],
  "additionalProperties": false
}
← Back to service list

dunning-reminders

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Automatically chase an unpaid invoice with escalating email reminders until it's paid.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
dunningReminders
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
invoiceId string Required Not specified
customerEmail string Required Not specified
amountEur number Required Not specified
dueDateIso string Required Not specified
intervalsSec array Optional Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "invoiceId": {
      "type": "string"
    },
    "customerEmail": {
      "type": "string",
      "format": "email"
    },
    "amountEur": {
      "type": "number"
    },
    "dueDateIso": {
      "type": "string"
    },
    "intervalsSec": {
      "type": "array",
      "minItems": 1,
      "maxItems": 3,
      "items": {
        "type": "integer",
        "minimum": 1
      }
    }
  },
  "required": [
    "invoiceId",
    "customerEmail",
    "amountEur",
    "dueDateIso"
  ],
  "additionalProperties": false
}
← Back to service list

form-intake-triage

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Triage an inbound lead form: auto-qualify, auto-filter spam, or ask a human on borderline cases.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
formIntakeTriage
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
form object Required Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "form": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "format": "email"
        },
        "name": {
          "type": "string"
        },
        "message": {
          "type": "string"
        },
        "budgetEur": {
          "type": "number"
        }
      },
      "required": [
        "email",
        "name",
        "message"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "form"
  ],
  "additionalProperties": false
}
← Back to service list

lead-drip-campaign

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Nurture a new lead with a welcome email and a scheduled drip of follow-ups, stopping the moment they convert or unsubscribe.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
leadDripCampaign
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
leadEmail string Required Not specified
leadName string Required Not specified
stepsSec array Optional Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "leadEmail": {
      "type": "string",
      "format": "email"
    },
    "leadName": {
      "type": "string"
    },
    "stepsSec": {
      "type": "array",
      "minItems": 1,
      "maxItems": 3,
      "items": {
        "type": "integer",
        "minimum": 1
      }
    }
  },
  "required": [
    "leadEmail",
    "leadName"
  ],
  "additionalProperties": false
}
← Back to service list

seo-audit-alert

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Check a batch of site endpoints and get an XLSX status report, with an email alert on failures.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
seoAuditAlert
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
siteUrl string Required Not specified
endpoints array Required Not specified
recipientEmail string Optional Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "siteUrl": {
      "type": "string",
      "format": "uri",
      "pattern": "^https://"
    },
    "endpoints": {
      "type": "array",
      "minItems": 1,
      "maxItems": 20,
      "items": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string"
          }
        },
        "required": [
          "path"
        ],
        "additionalProperties": false
      }
    },
    "recipientEmail": {
      "type": "string",
      "format": "email"
    }
  },
  "required": [
    "siteUrl",
    "endpoints"
  ],
  "additionalProperties": false
}
← Back to service list

shift-handoff-pdf

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Turn end-of-shift notes and incidents into a handoff PDF, with an optional supervisor email.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
shiftHandoffPdf
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
shiftName string Required Not specified
operator string Required Not specified
notes array Required Not specified
incidents array Required Not specified
supervisorEmail string Optional Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "shiftName": {
      "type": "string",
      "maxLength": 64
    },
    "operator": {
      "type": "string",
      "maxLength": 64
    },
    "notes": {
      "type": "array",
      "maxItems": 14,
      "items": {
        "type": "string",
        "maxLength": 80
      }
    },
    "incidents": {
      "type": "array",
      "maxItems": 14,
      "items": {
        "type": "object",
        "properties": {
          "time": {
            "type": "string",
            "maxLength": 16
          },
          "severity": {
            "type": "string",
            "maxLength": 16
          },
          "text": {
            "type": "string",
            "maxLength": 45
          }
        },
        "required": [
          "time",
          "severity",
          "text"
        ],
        "additionalProperties": false
      }
    },
    "supervisorEmail": {
      "type": "string",
      "format": "email",
      "maxLength": 254
    }
  },
  "required": [
    "shiftName",
    "operator",
    "notes",
    "incidents"
  ],
  "additionalProperties": false
}
← Back to service list

support-sla-escalation

Portfolio definition simple Catalogue-eligible: Yes
Notice: Executable registration, authorization and live acceptance are not verified by this file.
Description
Tracks a support ticket's SLA countdown and escalates via webhook if it breaches before resolution.
Source
Portfolio
Lifecycle Status
Portfolio definition (no DB lifecycle)
Catalogue Eligibility
Eligible
Workflow Reference
supportSlaEscalation
Approver Role
manager
Signature Required
Not specified
Portfolio Tier
simple

Input Schema

Schema annotation keywords (default, examples) omitted from this view.

Property Type Requirement Description
ticketId string Required Not specified
summary string Required Not specified
slaSeconds integer Required Not specified
webhookUrl string Required Not specified
Complete schema JSON
{
  "type": "object",
  "properties": {
    "ticketId": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "slaSeconds": {
      "type": "integer",
      "minimum": 1
    },
    "webhookUrl": {
      "type": "string",
      "format": "uri",
      "pattern": "^https://"
    }
  },
  "required": [
    "ticketId",
    "summary",
    "slaSeconds",
    "webhookUrl"
  ],
  "additionalProperties": false
}