{
"$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": [
"CreateEntry"
],
"properties": {
"CreateEntry": {
"type": "object",
"required": [
"data_type"
],
"properties": {
"data_type": {
"type": "string"
},
"particle": {
"type": [
"string",
"null"
]
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"UpdateEntry"
],
"properties": {
"UpdateEntry": {
"type": "object",
"required": [
"data_type",
"id"
],
"properties": {
"data_type": {
"type": "string"
},
"id": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"particle": {
"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-protocols/src/schema/execute_msg.json
ฯ 0.0%