{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/aptos/json-schema/WriteModule.json", "title": "WriteModule", "type": "object", "description": "Write a new module or update an existing one", "required": [ "address", "state_key_hash", "data" ], "properties": { "address": { "$ref": "#/components/schemas/Address" }, "state_key_hash": { "type": "string", "description": "State key hash" }, "data": { "$ref": "#/components/schemas/MoveModuleBytecode" } } }