The simplest possible pattern
The smallest pattern Weave will accept: a tiny header and a single phase.
The pattern
---
weave-script-version: 1
---
# Welcome
Say hi.
What Weave sees
When Weave reads this file, it pulls out the information below. You don't need to write any of this yourself.
{
"schemaVersion": 1,
"meta": {
"sourceSpecVersion": 1,
"attributes": {}
},
"phases": [
{
"id": "1-welcome",
"index": 0,
"name": "Welcome",
"durationSeconds": 0,
"perParticipant": false,
"body": "Say hi.",
"attributes": {}
}
]
}