Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reference/specs/plan-export.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ This bound prevents unbounded snapshot artifacts while keeping the marker audita
```json
"plan": {
"id": "plan-001",
"mode": "PlanOnly",
"mode": null,
"steps": []
}
```
Expand All @@ -177,7 +177,7 @@ This bound prevents unbounded snapshot artifacts while keeping the marker audita
| ------ | ------------ |
| id | Unique identifier of the plan |
| createdAt | (Optional) ISO-8601 UTC timestamp |
| mode | Plan lifecycle state |
| mode | Plan lifecycle state (`null` when not explicitly set on the plan object) |
| steps | Ordered list of step objects |

---
Expand Down
2 changes: 1 addition & 1 deletion docs/use/plan-export.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Plan export is useful to:
## Export a plan

```powershell
$request = New-IdleRequest -LifecycleEvent 'Joiner' -CorrelationId (New-Guid) -IdentityKeys @{
$request = New-IdleRequest -LifecycleEvent 'Joiner' -CorrelationId (New-Guid) -Actor 'HR-System' -IdentityKeys @{
EmployeeId = '12345'
} -Intent @{
Department = 'IT'
Expand Down
Loading