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
}