View request for the Move View Function API
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/aptos/json-schema/ViewRequest.json", "title": "ViewRequest", "type": "object", "description": "View request for the Move View Function API", "required": [ "function", "type_arguments", "arguments" ], "properties": { "function": { "$ref": "#/components/schemas/EntryFunctionId" }, "type_arguments": { "type": "array", "description": "Type arguments of the function", "items": { "$ref": "#/components/schemas/MoveType" } }, "arguments": { "type": "array", "description": "Arguments of the function", "items": {} } } }