{
"$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"
}
}
}
}
}
cw-cyber/contracts/cw-cyber-subgraph/schema/execute_msg.json
ฯ 0.0%