GCC Build OSv0
/api

TransitionWaveTransitionWave

retention: operational

A grouping of Capabilities that cut over together to the GCC. Waves are the unit of execution for the transition execution module (Phase 2).

RACI requirements

decision_maker
n/a
approver
n/a
reviewer
optional
contributor
optional
informed
optional

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://gcc.bootminds.com/ontology/node-types/transition_wave.json",
  "title": "TransitionWave",
  "description": "A grouping of Capabilities that cut over together to the GCC. Waves are the unit of execution for the transition execution module (Phase 2).",
  "type": "object",
  "x-node-type": "TransitionWave",
  "x-lifecycle-state-machine": null,
  "x-raci-requirements": {
    "decision_maker": "n/a",
    "approver": "n/a",
    "reviewer": "optional",
    "contributor": "optional",
    "informed": "optional"
  },
  "x-retention-class": "operational",
  "required": [
    "node_id",
    "node_type",
    "tenant_id",
    "attributes",
    "state",
    "created_at",
    "created_by"
  ],
  "properties": {
    "node_id": {
      "type": "string",
      "format": "uuid"
    },
    "node_type": {
      "const": "TransitionWave"
    },
    "tenant_id": {
      "type": "string",
      "format": "uuid"
    },
    "state": {
      "type": "string",
      "enum": [
        "Planned",
        "InPrep",
        "InDualRun",
        "Cutover",
        "Stabilising",
        "Closed"
      ],
      "description": "Coarse wave state. Mirrors the capability lifecycle at wave-level granularity; a formal state machine may emerge in Phase 2."
    },
    "attributes": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "name",
        "target_cutover_date",
        "capabilities_refs"
      ],
      "properties": {
        "name": {
          "type": "string",
          "minLength": 1,
          "description": "Wave name (e.g., 'Wave 1: IT Service Desk')."
        },
        "description": {
          "type": "string",
          "description": "Optional description of the wave's scope and rationale."
        },
        "target_cutover_date": {
          "type": "string",
          "format": "date",
          "description": "Target cutover date (ISO 8601 date) for the wave."
        },
        "actual_cutover_date": {
          "type": [
            "string",
            "null"
          ],
          "format": "date",
          "description": "Actual cutover date; null until cutover executed."
        },
        "capabilities_refs": {
          "type": "array",
          "description": "UUIDs of Capability nodes included in this wave.",
          "items": {
            "type": "string",
            "format": "uuid"
          }
        },
        "owner_id_ref": {
          "type": [
            "string",
            "null"
          ],
          "format": "uuid",
          "description": "Stakeholder UUID accountable for this wave (RACI Decision-maker, denormalised for convenience)."
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "created_by": {
      "type": "string",
      "format": "uuid"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}