{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/aptos/json-schema/MoveModuleBytecode.json", "title": "MoveModuleBytecode", "type": "object", "description": "Move module bytecode along with it's ABI", "required": [ "bytecode" ], "properties": { "bytecode": { "$ref": "#/components/schemas/HexEncodedBytes" }, "abi": { "$ref": "#/components/schemas/MoveModule" } } }