Tezos · Schema

Src1HashParameter

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
eq string **Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an src1-hash to get items where the specified field is equal to the specified value. Ex
ne string **Not equal** filter mode. \ Specify an src1-hash to get items where the specified field is not equal to the specified value. Example: `?hash.ne=src1qwe...`.
in array **In list** (any of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is equal to one of the specified values. Example: `?hash.in=hash1,hash2,hash3`.
ni array **Not in list** (none of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is not equal to all the specified values. Example: `?hash.ni=hash1,hash2,h
View JSON Schema on GitHub

JSON Schema

src1hashparameter.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Src1HashParameter",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "eq": {
      "type": "string",
      "description": "**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \\\nSpecify an src1-hash to get items where the specified field is equal to the specified value.\n\nExample: `?hash=src1qwe...`.",
      "nullable": true
    },
    "ne": {
      "type": "string",
      "description": "**Not equal** filter mode. \\\nSpecify an src1-hash to get items where the specified field is not equal to the specified value.\n\nExample: `?hash.ne=src1qwe...`.",
      "nullable": true
    },
    "in": {
      "type": "array",
      "description": "**In list** (any of) filter mode. \\\nSpecify a comma-separated list of src1-hashes to get items where the specified field is equal to one of the specified values.\n\nExample: `?hash.in=hash1,hash2,hash3`.",
      "nullable": true,
      "items": {
        "type": "string"
      }
    },
    "ni": {
      "type": "array",
      "description": "**Not in list** (none of) filter mode. \\\nSpecify a comma-separated list of src1-hashes to get items where the specified field is not equal to all the specified values.\n\nExample: `?hash.ni=hash1,hash2,hash3`.",
      "nullable": true,
      "items": {
        "type": "string"
      }
    }
  },
  "x-tzkt-extension": "query-parameter"
}