github.com/status-im/status-go@v1.1.0/integration-tests/schemas/wallet_createMultiTransaction (about)

     1  {
     2      "$schema": "http://json-schema.org/schema#",
     3      "properties": {
     4          "id": {
     5              "type": "integer"
     6          },
     7          "jsonrpc": {
     8              "type": "string"
     9          },
    10          "result": {
    11              "properties": {
    12                  "hashes": {
    13                      "properties": {
    14                          "31337": {
    15                              "items": {
    16                                  "type": "string"
    17                              },
    18                              "type": "array"
    19                          }
    20                      },
    21                      "required": [
    22                          "31337"
    23                      ],
    24                      "type": "object"
    25                  },
    26                  "id": {
    27                      "type": "integer"
    28                  }
    29              },
    30              "required": [
    31                  "hashes",
    32                  "id"
    33              ],
    34              "type": "object"
    35          }
    36      },
    37      "required": [
    38          "id",
    39          "jsonrpc",
    40          "result"
    41      ],
    42      "type": "object"
    43  }