{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExecuteMsg",
  "oneOf": [
    {
      "type": "object",
      "required": [
        "cyberlink"
      ],
      "properties": {
        "cyberlink": {
          "type": "object",
          "required": [
            "links"
          ],
          "properties": {
            "links": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/Link"
              }
            }
          }
        }
      },
      "additionalProperties": false
    },
    {
      "type": "object",
      "required": [
        "update_admins"
      ],
      "properties": {
        "update_admins": {
          "type": "object",
          "required": [
            "new_admins"
          ],
          "properties": {
            "new_admins": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      },
      "additionalProperties": false
    },
    {
      "type": "object",
      "required": [
        "update_executors"
      ],
      "properties": {
        "update_executors": {
          "type": "object",
          "required": [
            "new_executors"
          ],
          "properties": {
            "new_executors": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      },
      "additionalProperties": false
    }
  ],
  "definitions": {
    "Link": {
      "type": "object",
      "required": [
        "from",
        "to"
      ],
      "properties": {
        "from": {
          "type": "string"
        },
        "to": {
          "type": "string"
        }
      }
    }
  }
}

Dimensions

cw-cyber/contracts/hub-protocols/schema/execute_msg.json
cw-cyber/contracts/litium-core/schema/execute_msg.json
cw-cyber/contracts/hub-channels/schema/execute_msg.json
cw-cyber/contracts/hub-networks/schema/execute_msg.json
cw-cyber/contracts/litium-refer/schema/execute_msg.json
cw-cyber/contracts/cw-cyber-gift/schema/execute_msg.json
cw-cyber/contracts/hub-tokens/schema/execute_msg.json
cw-cyber/contracts/hub-skills/schema/execute_msg.json
cw-cyber/contracts/litium-wrap/schema/execute_msg.json
cw-cyber/contracts/hub-libs/schema/execute_msg.json
cw-cyber/contracts/cw-cyber-passport/schema/execute_msg.json
cw-cyber/contracts/litium-mine/schema/execute_msg.json
cw-cyber/contracts/litium-stake/schema/execute_msg.json
cw-cyber/contracts/hub-protocols/src/schema/execute_msg.json

Local Graph