{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExecuteMsg",
"oneOf": [
{
"type": "object",
"required": [
"UpdateOwner"
],
"properties": {
"UpdateOwner": {
"type": "object",
"properties": {
"new_owner": {
"type": [
"string",
"null"
]
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"UpdateEntryOwner"
],
"properties": {
"UpdateEntryOwner": {
"type": "object",
"required": [
"id",
"new_owner"
],
"properties": {
"id": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"new_owner": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"CreateEntry"
],
"properties": {
"CreateEntry": {
"type": "object",
"required": [
"endpoint",
"network",
"neuron",
"protocol"
],
"properties": {
"endpoint": {
"type": "string"
},
"network": {
"type": "string"
},
"neuron": {
"type": "string"
},
"particle": {
"type": [
"string",
"null"
]
},
"protocol": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"UpdateEntry"
],
"properties": {
"UpdateEntry": {
"type": "object",
"required": [
"id"
],
"properties": {
"endpoint": {
"type": [
"string",
"null"
]
},
"id": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"network": {
"type": [
"string",
"null"
]
},
"neuron": {
"type": [
"string",
"null"
]
},
"particle": {
"type": [
"string",
"null"
]
},
"protocol": {
"type": [
"string",
"null"
]
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"DeleteEntry"
],
"properties": {
"DeleteEntry": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
}
}
},
"additionalProperties": false
}
]
}
cw-cyber/contracts/hub-skills/schema/execute_msg.json
ฯ 0.0%