Aptos · Schema

TableItemRequest

Table Item request for the GetTableItem API

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
key_type object
value_type object
key object The value of the table item's key
View JSON Schema on GitHub

JSON Schema

TableItemRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/TableItemRequest.json",
  "title": "TableItemRequest",
  "type": "object",
  "description": "Table Item request for the GetTableItem API",
  "required": [
    "key_type",
    "value_type",
    "key"
  ],
  "properties": {
    "key_type": {
      "$ref": "#/components/schemas/MoveType"
    },
    "value_type": {
      "$ref": "#/components/schemas/MoveType"
    },
    "key": {
      "description": "The value of the table item's key"
    }
  }
}