{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "QueryMsg", "oneOf": [ { "type": "object", "required": [ "asking_price" ], "properties": { "asking_price": { "type": "object", "required": [ "token_id" ], "properties": { "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "owner_of" ], "properties": { "owner_of": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "approval" ], "properties": { "approval": { "type": "object", "required": [ "operator", "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "operator": { "type": "string" }, "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "approvals" ], "properties": { "approvals": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "all_operators" ], "properties": { "all_operators": { "type": "object", "required": [ "owner" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "limit": { "type": [ "integer", "null" ], "format": "uint32", "minimum": 0.0 }, "owner": { "type": "string" }, "start_after": { "type": [ "string", "null" ] } } } }, "additionalProperties": false }, { "type": "object", "required": [ "num_tokens" ], "properties": { "num_tokens": { "type": "object" } }, "additionalProperties": false }, { "type": "object", "required": [ "contract_info" ], "properties": { "contract_info": { "type": "object" } }, "additionalProperties": false }, { "type": "object", "required": [ "nft_info" ], "properties": { "nft_info": { "type": "object", "required": [ "token_id" ], "properties": { "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "all_nft_info" ], "properties": { "all_nft_info": { "type": "object", "required": [ "token_id" ], "properties": { "include_expired": { "type": [ "boolean", "null" ] }, "token_id": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false } ] }