{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "InstantiateMsg", "type": "object", "required": [ "cw4_group_code_id", "initial_members" ], "properties": { "cw4_group_code_id": { "type": "integer", "format": "uint64", "minimum": 0.0 }, "initial_members": { "type": "array", "items": { "$ref": "#/definitions/Member" } } }, "definitions": { "Member": { "description": "A group member has a weight associated with them. This may all be equal, or may have meaning in the app that makes use of the group (eg. voting power)", "type": "object", "required": [ "addr", "weight" ], "properties": { "addr": { "type": "string" }, "weight": { "type": "integer", "format": "uint64", "minimum": 0.0 } } } } }