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

     1  {
     2      "$schema": "http://json-schema.org/schema#",
     3      "properties": {
     4          "id": {
     5              "type": "string"
     6          },
     7          "jsonrpc": {
     8              "type": "string"
     9          },
    10          "result": {
    11              "items": {
    12                  "properties": {
    13                      "additionalData": {
    14                          "type": "string"
    15                      },
    16                      "autoDelete": {
    17                          "type": "boolean"
    18                      },
    19                      "data": {
    20                          "type": "string"
    21                      },
    22                      "from": {
    23                          "type": "string"
    24                      },
    25                      "gasLimit": {
    26                          "type": "string"
    27                      },
    28                      "gasPrice": {
    29                          "type": "string"
    30                      },
    31                      "hash": {
    32                          "type": "string"
    33                      },
    34                      "multi_transaction_id": {
    35                          "type": "integer"
    36                      },
    37                      "network_id": {
    38                          "type": "integer"
    39                      },
    40                      "nonce": {
    41                          "type": "integer"
    42                      },
    43                      "status": {
    44                          "type": "string"
    45                      },
    46                      "symbol": {
    47                          "type": "string"
    48                      },
    49                      "timestamp": {
    50                          "type": "integer"
    51                      },
    52                      "to": {
    53                          "type": "string"
    54                      },
    55                      "type": {
    56                          "type": "string"
    57                      },
    58                      "value": {
    59                          "type": "string"
    60                      }
    61                  },
    62                  "required": [
    63                      "additionalData",
    64                      "autoDelete",
    65                      "data",
    66                      "from",
    67                      "gasLimit",
    68                      "gasPrice",
    69                      "hash",
    70                      "multi_transaction_id",
    71                      "network_id",
    72                      "nonce",
    73                      "status",
    74                      "symbol",
    75                      "timestamp",
    76                      "to",
    77                      "type",
    78                      "value"
    79                  ],
    80                  "type": "object"
    81              },
    82              "type": "array"
    83          }
    84      },
    85      "required": [
    86          "id",
    87          "jsonrpc",
    88          "result"
    89      ],
    90      "type": "object"
    91  }