changedInput schema / properties / operation / description
Previous value: -"Governance operation; sync_group_action attests one exact federation journal digest"New value: +"Governance operation"
changedInput schema / properties / operation / enum
Previous value: -[
- "add_validator",
- "remove_validator",
- "update_power",
- "sync_group_action"
-]New value: +[
+ "add_validator",
+ "remove_validator",
+ "update_power",
+ "sync_group_action",
+ "scope_action"
+]
addedInput schema / properties / payload
Added value: +{
+ "description": "Optional legacy base64 operation payload; mutually exclusive with scope",
+ "type": "string"
+}
addedInput schema / properties / scope
Added value: +{
+ "description": "Guided app-v20 scope_action template; the node sorts it canonically and owns the execution heights",
+ "properties": {
+ "controller_validator_id": {
+ "type": "string"
+ },
+ "domains": {
+ "items": {
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ },
+ "members": {
+ "items": {
+ "properties": {
+ "active": {
+ "default": true,
+ "type": "boolean"
+ },
+ "assigned_weight": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "joined_revision": {
+ "description": "May be omitted only for revision 1",
+ "minimum": 1,
+ "type": "integer"
+ },
+ "validator_id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "validator_id",
+ "assigned_weight"
+ ],
+ "type": "object"
+ },
+ "minItems": 1,
+ "type": "array"
+ },
+ "revision": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "scope_id": {
+ "type": "string"
+ },
+ "state": {
+ "enum": [
+ "active",
+ "paused",
+ "retired"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "scope_id",
+ "revision",
+ "state",
+ "controller_validator_id",
+ "domains",
+ "members"
+ ],
+ "type": "object"
+}
changedInput schema / properties / target_id / description
Previous value: -"Hex-encoded agent/validator ID"New value: +"Validator ID for validator ops; optional for scope_action when scope.scope_id is supplied"
changedInput schema / required
Previous value: -[
- "operation",
- "target_id",
- "reason"
-]New value: +[
+ "operation",
+ "reason"
+]