From 74a39c753bf5d10e5a018213f06f1e37e12baa89 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 19:07:45 +0000 Subject: [PATCH 1/2] Initial plan From 8d71c4bb3c898abc3a17062d32e6db588e3857ce Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 19:09:30 +0000 Subject: [PATCH 2/2] Make example calls consistent and adhere to real schema of export Co-authored-by: blindzero <13959569+blindzero@users.noreply.github.com> Agent-Logs-Url: https://github.com/blindzero/IdentityLifecycleEngine/sessions/39324bc4-0951-4143-b8a4-ab2751f90db0 --- docs/reference/specs/plan-export.md | 4 ++-- docs/use/plan-export.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/specs/plan-export.md b/docs/reference/specs/plan-export.md index be4cde1b..a11bc4ba 100644 --- a/docs/reference/specs/plan-export.md +++ b/docs/reference/specs/plan-export.md @@ -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": [] } ``` @@ -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 | --- diff --git a/docs/use/plan-export.md b/docs/use/plan-export.md index da73bffc..be5f7093 100644 --- a/docs/use/plan-export.md +++ b/docs/use/plan-export.md @@ -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'